Add missing command handler connection that I forgot about

This commit is contained in:
Andrew Ferrazzutti 2022-04-12 01:03:18 -04:00
parent af296510aa
commit 59c7f1fd2e
1 changed files with 1 additions and 0 deletions

View File

@ -770,6 +770,7 @@ export default class PeerClient {
send_chat: this.sendChat,
send_media: this.sendMedia,
delete_chat: this.deleteChat,
mark_read: this.markRead,
}[req.command] || this.handleUnknownCommand
}
const resp = { id: req.id }