1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

fix(profileform): Fixed segfault on logut

This commit is contained in:
Diadlo 2016-04-08 02:06:39 +03:00 committed by Polshakov Dmitry
parent 8f4b6869f1
commit 2e9295f420

View File

@ -483,6 +483,8 @@ void ProfileForm::onRegisterButtonClicked()
Toxme::ExecCode code = Toxme::ExecCode::Ok;
QString response = Toxme::createAddress(code, server, id, name, privacy, bio);
if (Core::getInstance())
{
switch (code) {
case Toxme::Updated:
QMessageBox::information(this, tr("Done!"), tr("Account %1@%2 updated successfully").arg(name, server), "Ok");
@ -504,3 +506,4 @@ void ProfileForm::onRegisterButtonClicked()
bodyUI->toxmeRegisterButton->setText(tr("Register"));
bodyUI->toxmeUpdateButton->setText(tr("Update"));
}
}