rm CONFIG.checkSigs (default always true)
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Martti Malmi 2023-12-18 10:04:32 +02:00
parent 722a3a1a0e
commit 8aeda3f7a1
4 changed files with 1 additions and 11 deletions

View File

@ -21,9 +21,6 @@
"moderation": true, "moderation": true,
"defaultFollows": ["npub1sn0rtcjcf543gj4wsg7fa59s700d5ztys5ctj0g69g2x6802npjqhjjtws"] "defaultFollows": ["npub1sn0rtcjcf543gj4wsg7fa59s700d5ztys5ctj0g69g2x6802npjqhjjtws"]
}, },
"defaultPreferences": {
"checkSigs": true
},
"media": { "media": {
"bypassImgProxyError": false, "bypassImgProxyError": false,
"preferLargeMedia": true "preferLargeMedia": true

View File

@ -21,10 +21,6 @@
"moderation": false, "moderation": false,
"defaultFollows": ["npub1wnwwcv0a8wx0m9stck34ajlwhzuua68ts8mw3kjvspn42dcfyjxs4n95l8"] "defaultFollows": ["npub1wnwwcv0a8wx0m9stck34ajlwhzuua68ts8mw3kjvspn42dcfyjxs4n95l8"]
}, },
"defaultPreferences": {
"checkSigs": true,
"sentToRelayNotifications": "none"
},
"media": { "media": {
"bypassImgProxyError": true, "bypassImgProxyError": true,
"preferLargeMedia": true "preferLargeMedia": true

View File

@ -58,9 +58,6 @@ declare const CONFIG: {
deck: boolean; deck: boolean;
zapPool: boolean; zapPool: boolean;
}; };
defaultPreferences: {
checkSigs: boolean;
};
signUp: { signUp: {
moderation: boolean; moderation: boolean;
defaultFollows: Array<string>; defaultFollows: Array<string>;

View File

@ -114,6 +114,6 @@ export const DefaultPreferences = {
telemetry: true, telemetry: true,
showBadges: false, showBadges: false,
showStatus: true, showStatus: true,
checkSigs: CONFIG.defaultPreferences.checkSigs, checkSigs: true,
autoTranslate: true, autoTranslate: true,
} as UserPreferences; } as UserPreferences;