|
|
@ -232,7 +232,9 @@ const handleMessage = function (ctx, user, msg) {
|
|
|
|
// slice off the sequence number and pass in the rest of the message
|
|
|
|
// slice off the sequence number and pass in the rest of the message
|
|
|
|
ctx.rpc(ctx, rpc_call, function (err, output) {
|
|
|
|
ctx.rpc(ctx, rpc_call, function (err, output) {
|
|
|
|
if (err) {
|
|
|
|
if (err) {
|
|
|
|
console.error('[' + err + ']', output); // TODO make this disableable
|
|
|
|
if (!ctx.config.suppressRPCErrors) {
|
|
|
|
|
|
|
|
console.error('[' + err + ']', output);
|
|
|
|
|
|
|
|
}
|
|
|
|
sendMsg(ctx, user, [seq, 'ACK']);
|
|
|
|
sendMsg(ctx, user, [seq, 'ACK']);
|
|
|
|
sendMsg(ctx, user, [0, HISTORY_KEEPER_ID, 'MSG', user.id, JSON.stringify([parsed[0], 'ERROR', err])]);
|
|
|
|
sendMsg(ctx, user, [0, HISTORY_KEEPER_ID, 'MSG', user.id, JSON.stringify([parsed[0], 'ERROR', err])]);
|
|
|
|
return
|
|
|
|
return
|
|
|
|