summaryrefslogtreecommitdiff
path: root/packages/backend/src/server/api
diff options
context:
space:
mode:
Diffstat (limited to 'packages/backend/src/server/api')
-rw-r--r--packages/backend/src/server/api/stream/Connection.ts12
1 files changed, 12 insertions, 0 deletions
diff --git a/packages/backend/src/server/api/stream/Connection.ts b/packages/backend/src/server/api/stream/Connection.ts
index 41c0feccc7..7dd7db24e5 100644
--- a/packages/backend/src/server/api/stream/Connection.ts
+++ b/packages/backend/src/server/api/stream/Connection.ts
@@ -201,6 +201,18 @@ export default class Connection {
@bindThis
private async onNoteStreamMessage(data: GlobalEvents['note']['payload']) {
+ // we must not send to the frontend information about notes from
+ // users who blocked the logged-in user, even when they're replies
+ // to notes the logged-in user can see
+ if (data.type === 'replied') {
+ const noteUserId = data.body.body.userId;
+ if (noteUserId !== null) {
+ if (this.userIdsWhoBlockingMe.has(noteUserId)) {
+ return;
+ }
+ }
+ }
+
this.sendMessageToWs('noteUpdated', {
id: data.body.id,
type: data.type,