From 8ac69ca2621cd2311300815ce2ea42c39fddd9b1 Mon Sep 17 00:00:00 2001 From: Yann Flory Date: Fri, 22 Apr 2016 11:46:27 +0200 Subject: [PATCH] Add a missing "time" property in the netflux client causing incorrect timeout errors --- www/common/netflux-client.js | 1 + 1 file changed, 1 insertion(+) diff --git a/www/common/netflux-client.js b/www/common/netflux-client.js index e6567229a..7d436f018 100644 --- a/www/common/netflux-client.js +++ b/www/common/netflux-client.js @@ -51,6 +51,7 @@ const mkChannel = (ctx, id) => { }; const chan = { _: internal, + time: now(), id: id, members: internal.members, bcast: (msg) => channelBcast(ctx, chan.id, msg),