git ssb

0+

alanz / patchwork



forked from Matt McKegg / patchwork

Commit d2a64eaa0249b9f9b937741f6bb64eae15d044bd

whoops fix check

Matt McKegg committed on 3/13/2017, 6:42:06 AM
Parent: 0b9adb1dfcfd2248f55f9dc2130f2d53aeb91794

Files changed

lib/replicate-with-progress.jschanged
lib/replicate-with-progress.jsView
@@ -143,9 +143,9 @@
143143
144144 function localPeers () {
145145 if (!sbot.gossip) return
146146 sbot.gossip.peers().forEach(function (e) {
147- if (e.source === 'local' && !toSend[e.key]) {
147+ if (e.source === 'local' && toSend[e.key] != null) {
148148 sbot.latestSequence(e.key, function (err, seq) {
149149 addPeer({id: e.key, sequence: err ? 0 : toSeq(seq)})
150150 })
151151 }

Built with git-ssb-web