mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-25 20:48:52 +03:00
Enable online key backup by default
This commit is contained in:
parent
bf7b58c959
commit
1a7409876e
1 changed files with 1 additions and 1 deletions
|
@ -141,7 +141,7 @@ UserSettings::load(std::optional<QString> profile)
|
|||
settings.value(prefix + "user/automatically_share_keys_with_trusted_users", false).toBool();
|
||||
onlyShareKeysWithVerifiedUsers_ =
|
||||
settings.value(prefix + "user/only_share_keys_with_verified_users", false).toBool();
|
||||
useOnlineKeyBackup_ = settings.value(prefix + "user/online_key_backup", false).toBool();
|
||||
useOnlineKeyBackup_ = settings.value(prefix + "user/online_key_backup", true).toBool();
|
||||
|
||||
disableCertificateValidation_ =
|
||||
settings.value(QStringLiteral("disable_certificate_validation"), false).toBool();
|
||||
|
|
Loading…
Reference in a new issue