This commit is contained in:
syuilo 2019-04-15 21:59:14 +09:00
parent da1394f029
commit 4ca955bbd1

View file

@ -23,7 +23,7 @@ export default class extends Channel {
public onMessage(type: string, body: any) { public onMessage(type: string, body: any) {
switch (type) { switch (type) {
case 'read': case 'read':
read(this.user!.id, this.otherpartyId, body.id); read(this.user!.id, this.otherpartyId, [body.id]);
break; break;
} }
} }