Use the new end_of_history message

pull/1/head
yflory 2016-09-23 15:37:12 +02:00
parent 2267ec8c43
commit 37c3f12790
1 changed files with 2 additions and 1 deletions

View File

@ -197,7 +197,8 @@ const handleMessage = function (ctx, user, msg) {
storeMessage(ctx, ctx.channels[parsed[1]], JSON.stringify(key));
historyKeeperKeys[parsed[1]] = parsed[2];
}
sendMsg(ctx, user, [0, HISTORY_KEEPER_ID, 'MSG', user.id, 0]);
let parsedMsg = {state: 1, channel: parsed[1]};
sendMsg(ctx, user, [0, HISTORY_KEEPER_ID, 'MSG', user.id, JSON.stringify(parsedMsg)]);
});
}
return;