1
0
Fork 0
forked from blue/squawk

Fix build for qt 5, removed some debug messages

This commit is contained in:
Blue 2024-12-14 18:08:50 +02:00
parent d4cec645b5
commit 321f0b03c8
Signed by untrusted user: blue
GPG key ID: 9B203B252A63EE38
8 changed files with 57 additions and 21 deletions

View file

@ -81,8 +81,8 @@ Core::Account::Account(
config.setDomain(p_server);
config.setPassword(p_password);
config.setAutoAcceptSubscriptions(true);
config.setIgnoreSslErrors(true);
//config.setAutoReconnectionEnabled(false);
// config.setIgnoreSslErrors(true);
// config.setAutoReconnectionEnabled(false);
delay = new DelayManager::Manager(getBareJid());
QObject::connect(delay, &DelayManager::Manager::gotInfo, this, &Account::infoReady);
QObject::connect(delay, &DelayManager::Manager::gotOwnInfo, this, &Account::infoReady);

View file

@ -91,8 +91,6 @@ void Core::Squawk::stop() {
break;
}
qDebug() << "Saving password for" << acc->getName() << password;
settings.setValue("name", acc->getName());
settings.setValue("server", acc->getServer());
settings.setValue("login", acc->getLogin());