Skip to content

Commit a547ca0

Browse files
committed
[[ssb] fix to include yourself when doing social filtering.
1 parent dd0ad85 commit a547ca0

File tree

1 file changed

+1
-1
lines changed
  • ui/core/platforms/nodejs-ssb

1 file changed

+1
-1
lines changed

ui/core/platforms/nodejs-ssb/ssb.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ class NodeJsSSB {
152152
const filter = opts.filter
153153
let selectedFilter
154154
let friends = await friendship.friendsAsArray(sbot.id)
155-
friends.push(ssb.id) // so you don't filter yourself out.
155+
friends.push(sbot.id) // so you don't filter yourself out.
156156

157157
switch (filter) {
158158
case "Following":

0 commit comments

Comments
 (0)