aboutsummaryrefslogtreecommitdiff
path: root/gossip.js
diff options
context:
space:
mode:
Diffstat (limited to 'gossip.js')
-rw-r--r--gossip.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/gossip.js b/gossip.js
index d86d3a4..73ea5ab 100644
--- a/gossip.js
+++ b/gossip.js
@@ -85,10 +85,9 @@ function sync (subs, keys) {
localforage.getItem(msg.author).then(feed => {
open(feed[0]).then(lastmsg => {
if (unboxedreq.length + lastmsg.seq === msg.seq) {
- console.log('combinable feeds')
var newlog = unboxedreq.concat(feed)
localforage.setItem(msg.author, newlog).then(success => {
- console.log('combined existing feed with diff and saved to client')
+ console.log('combined existing feed of ' + msg.author + ' with diff and saved to client')
})
localforage.getItem('log').then(log => {
if (!log) {