[Server] Fix #2745

This commit is contained in:
syuilo 2019-01-21 00:32:54 +09:00
parent e559417cab
commit 977a4373c5
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69
3 changed files with 19 additions and 7 deletions

View file

@ -1,5 +1,6 @@
import autobind from 'autobind-decorator';
import Channel from '../channel';
import { pack } from '../../../../models/note';
export default class extends Channel {
public readonly chName = 'userList';
@ -11,7 +12,11 @@ export default class extends Channel {
const listId = params.listId as string;
// Subscribe stream
this.subscriber.on(`userListStream:${listId}`, data => {
this.subscriber.on(`userListStream:${listId}`, async data => {
// 再パック
if (data.type == 'note') data.body = await pack(data.body.id, this.user, {
detail: true
});
this.send(data);
});
}