mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 19:08:58 +03:00
Fix linting
This commit is contained in:
parent
2d9f98a0b7
commit
4cb27f34f2
1 changed files with 3 additions and 3 deletions
|
@ -499,8 +499,8 @@ UserSettingsPage::importSessionKeys()
|
|||
}
|
||||
|
||||
try {
|
||||
auto sessions = mtx::crypto::decrypt_exported_sessions(
|
||||
payload, password.toStdString());
|
||||
auto sessions =
|
||||
mtx::crypto::decrypt_exported_sessions(payload, password.toStdString());
|
||||
cache::client()->importSessionKeys(std::move(sessions));
|
||||
} catch (const mtx::crypto::sodium_exception &e) {
|
||||
QMessageBox::warning(this, tr("Error"), e.what());
|
||||
|
@ -545,7 +545,7 @@ UserSettingsPage::exportSessionKeys()
|
|||
auto encrypted_blob = mtx::crypto::encrypt_exported_sessions(
|
||||
cache::client()->exportSessionKeys(), password.toStdString());
|
||||
|
||||
QString b64 = QString::fromStdString( mtx::crypto::bin2base64(encrypted_blob));
|
||||
QString b64 = QString::fromStdString(mtx::crypto::bin2base64(encrypted_blob));
|
||||
|
||||
QString prefix("-----BEGIN MEGOLM SESSION DATA-----");
|
||||
QString suffix("-----END MEGOLM SESSION DATA-----");
|
||||
|
|
Loading…
Reference in a new issue