Commit 9744d260b89e1e2afac37b36c0973c99040adefd
liking a post is now like following a thread — it will be include in your public feed
—Matt McKegg committed on 11/2/2016, 7:44:04 PM
Parent: c2421901bdd957ae5e4d3f66accdd85bfd7cd5c8
Files changed
modules/public.js | changed |
modules/public.js | ||
---|---|---|
@@ -115,9 +115,10 @@ | ||
115 | 115 | return ( |
116 | 116 | id === item.author || |
117 | 117 | following().has(item.author) || |
118 | 118 | subscribedChannels().has(item.channel) || |
119 | - (item.repliesFrom && item.repliesFrom.has(id)) | |
119 | + (item.repliesFrom && item.repliesFrom.has(id)) || | |
120 | + item.digs && item.digs.has(id) | |
120 | 121 | ) |
121 | 122 | }, |
122 | 123 | bumpFilter: (msg, group) => { |
123 | 124 | if (!group.message) { |
Built with git-ssb-web