Skip to content

Commit

Permalink
rm CONFIG.checkSigs (default always true)
Browse files Browse the repository at this point in the history
  • Loading branch information
mmalmi committed Dec 18, 2023
1 parent 722a3a1 commit 8aeda3f
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 11 deletions.
3 changes: 0 additions & 3 deletions packages/app/config/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@
"moderation": true,
"defaultFollows": ["npub1sn0rtcjcf543gj4wsg7fa59s700d5ztys5ctj0g69g2x6802npjqhjjtws"]
},
"defaultPreferences": {
"checkSigs": true
},
"media": {
"bypassImgProxyError": false,
"preferLargeMedia": true
Expand Down
4 changes: 0 additions & 4 deletions packages/app/config/iris.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,6 @@
"moderation": false,
"defaultFollows": ["npub1wnwwcv0a8wx0m9stck34ajlwhzuua68ts8mw3kjvspn42dcfyjxs4n95l8"]
},
"defaultPreferences": {
"checkSigs": true,
"sentToRelayNotifications": "none"
},
"media": {
"bypassImgProxyError": true,
"preferLargeMedia": true
Expand Down
3 changes: 0 additions & 3 deletions packages/app/custom.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,6 @@ declare const CONFIG: {
deck: boolean;
zapPool: boolean;
};
defaultPreferences: {
checkSigs: boolean;
};
signUp: {
moderation: boolean;
defaultFollows: Array<string>;
Expand Down
2 changes: 1 addition & 1 deletion packages/app/src/Login/Preferences.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,6 @@ export const DefaultPreferences = {
telemetry: true,
showBadges: false,
showStatus: true,
checkSigs: CONFIG.defaultPreferences.checkSigs,
checkSigs: true,
autoTranslate: true,
} as UserPreferences;

0 comments on commit 8aeda3f

Please sign in to comment.