git ssb

10+

Matt McKegg / patchwork



Commit 786c0bed4ba4709294e4550523273465e8a22974

filter boxed private messages out of "show updates" collector

Matt McKegg committed on 10/30/2016, 10:51:21 PM
Parent: 0a238b239741686dff3e8eec203f8d00f0a42486

Files changed

modules/feed-summary.jschanged
modules/feed-summary.jsView
@@ -46,9 +46,10 @@
4646
4747 pull(
4848 getStream({old: false}),
4949 pull.drain((item) => {
50- if (item && item.value && item.value.content.type !== 'vote') {
50 + var type = item && item.value && item.value.content.type
51 + if (type && type !== 'vote') {
5152 updates.set(updates() + 1)
5253 }
5354 })
5455 )

Built with git-ssb-web