Commit e26da8bb43ee4322240170dc15fa3b89df6ee0fa
fix accidental filtering out of new backlinks
Matt McKegg committed on 10/28/2017, 9:44:19 AMParent: 7e1f67391c61eada0ba43cb809a353c048a5f097
Files changed
message/obs/backlinks.js | changed |
message/obs/backlinks.js | ||
---|---|---|
@@ -17,11 +17,8 @@ | ||
17 | 17 … | return computed([api.backlinks.obs.for(id)], (msgs) => { |
18 | 18 … | return msgs.map(map).filter((backlink) => { |
19 | 19 … | return backlink.type !== 'vote' && backlink.type !== 'about' |
20 | 20 … | }) |
21 | - }, { | |
22 | - // objects coming down this stream will be immutable | |
23 | - comparer: (a, b) => a === b | |
24 | 21 … | }) |
25 | 22 … | } |
26 | 23 … | |
27 | 24 … | function map (msg) { |
Built with git-ssb-web