[Server] Fix #2745
This commit is contained in:
parent
e559417cab
commit
977a4373c5
3 changed files with 19 additions and 7 deletions
|
@ -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);
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue