chore: default sig checks off
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Kieran 2023-10-14 08:29:24 +01:00
parent cf7d9b8883
commit 4bf868c05a
Signed by: Kieran
GPG Key ID: DE71CEB3925BE941
2 changed files with 2 additions and 2 deletions

View File

@ -87,7 +87,7 @@ export class MultiAccountStore extends ExternalStore<LoginSession> {
timestamp: 0,
};
v.extraChats ??= [];
v.preferences.checkSigs ??= true;
v.preferences.checkSigs ??= false;
if (v.privateKeyData) {
v.privateKeyData = KeyStorage.fromPayload(v.privateKeyData as object);
}

View File

@ -110,5 +110,5 @@ export const DefaultPreferences = {
telemetry: true,
showBadges: false,
showStatus: true,
checkSigs: true,
checkSigs: false,
} as UserPreferences;