Skip to content
Snippets Groups Projects
Verified Commit 5ae73bf8 authored by Nicolas Werner's avatar Nicolas Werner
Browse files

Add trailing newline to session export to make gomuks happy

parent a2ec4a61
No related branches found
No related tags found
No related merge requests found
Pipeline #1445 passed
......@@ -1399,7 +1399,7 @@ UserSettingsPage::exportSessionKeys()
QString suffix("-----END MEGOLM SESSION DATA-----");
QString newline("\n");
QTextStream out(&file);
out << prefix << newline << b64 << newline << suffix;
out << prefix << newline << b64 << newline << suffix << newline;
file.close();
} catch (const std::exception &e) {
QMessageBox::warning(this, tr("Error"), e.what());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment