Bluesky app fork with some witchin' additions 💫

show content regardless of auth status

commit 2a918602a840e36f895e89afdafff5e8377ef17e
Author: Aviva Ruben <aviva@rubenfamily.com>
Date: Fri Apr 11 18:59:19 2025 -0500

patch to filter out no-unauthenticated labels

filter out "!no-unauthenticated" from
ModerationDecision, to pretend this label type
never existed.

Aviva Ruben 2d598395 ffdf8169

+13
+13
patches/@atproto+api+0.14.21.patch
··· 1 + diff --git a/node_modules/@atproto/api/dist/moderation/decision.js b/node_modules/@atproto/api/dist/moderation/decision.js 2 + index aaac177..f54848a 100644 3 + --- a/node_modules/@atproto/api/dist/moderation/decision.js 4 + +++ b/node_modules/@atproto/api/dist/moderation/decision.js 5 + @@ -67,6 +67,8 @@ class ModerationDecision { 6 + ui(context) { 7 + const ui = new ui_1.ModerationUI(); 8 + for (const cause of this.causes) { 9 + + if (cause.label?.val === '!no-unauthenticated') continue; 10 + + 11 + if (cause.type === 'blocking' || 12 + cause.type === 'blocked-by' || 13 + cause.type === 'block-other') {