git ssb

16+

Dominic / patchbay



Commit 1f8e7bb580d31f7db5b1bf4ffc2b86254aaa577e

Include self in people I follow filtering as its quite counter-intuitive otherwise

Anders Rune Jensen committed on 1/18/2018, 2:05:23 PM
Parent: 4a598f0f005da7b63198dc16c60e971cfc8b2b67

Files changed

app/html/filter.jschanged
app/html/filter.jsView
@@ -132,9 +132,9 @@
132132
133133 function followFilter (msg) {
134134 if (!filterSettings().only.peopleIFollow) return true
135135
136- return Array.from(peopleIFollow()).includes(msg.value.author)
136 + return Array.from(peopleIFollow()).concat(myId).includes(msg.value.author)
137137 }
138138
139139 function channelFilter (msg) {
140140 var filters = filterSettings().exclude.channels

Built with git-ssb-web