Skip to content
Snippets Groups Projects
Commit 343c9c81 authored by Loren Burkholder's avatar Loren Burkholder
Browse files

Don't attempt to begin group ""

parent 777b9bf2
No related branches found
No related tags found
No related merge requests found
Pipeline #581 failed
......@@ -449,12 +449,14 @@ ChatPage::deleteConfigs()
{
QSettings settings;
QString profilePrefix = (UserSettings::instance()->profile() == "default" ? "" : QString("profile/%1").arg(UserSettings::instance()->profile()));
settings.beginGroup(profilePrefix);
if (UserSettings::instance()->profile() != "")
{
settings.beginGroup("profile");
settings.beginGroup(UserSettings::instance()->profile());
}
settings.beginGroup("auth");
settings.remove("");
settings.endGroup(); // auth
settings.endGroup(); // profilePrefix
http::client()->shutdown();
cache::deleteData();
......
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