Skip to content

Commit 215c729

Browse files
committed
explicit about 'in your own database'
1 parent bfdcfe6 commit 215c729

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pages/docs/guides/chat/bring-own-database.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ After performing the decoding and you have a chat `Message` object, you can:
3535
<Code>
3636
```javascript
3737
const saveOrUpdateMessage = (message) => {
38-
// Check if the message already exists by `serial`
38+
// Check if the message already exists in your own database by `serial`
3939
const existingMessage = await getMessageBySerial(message.serial);
4040
if (!existingMessage) {
4141
// message not yet in your database => save it

0 commit comments

Comments
 (0)