remove some gui notifications

This commit is contained in:
Martin Rotter 2021-02-23 14:34:00 +01:00
parent 5d360199b8
commit ea367b6c87
3 changed files with 0 additions and 9 deletions

View File

@ -524,9 +524,6 @@ void FeedlyNetwork::onTokensRetrieved(const QString& access_token, const QString
QSqlDatabase database = qApp->database()->connection(metaObject()->className());
DatabaseQueries::storeNewOauthTokens(database, QSL("FeedlyAccounts"), refresh_token, m_service->accountId());
qApp->showGuiMessage(tr("Logged in successfully"),
tr("Your login to Feedly was authorized."),
QSystemTrayIcon::MessageIcon::Information);
}
}

View File

@ -128,9 +128,6 @@ void GmailNetworkFactory::initializeOauth() {
QSqlDatabase database = qApp->database()->connection(metaObject()->className());
DatabaseQueries::storeNewOauthTokens(database, QSL("GmailAccounts"), refresh_token, m_service->accountId());
qApp->showGuiMessage(tr("Logged in successfully"),
tr("Your login to Gmail was authorized."),
QSystemTrayIcon::MessageIcon::Information);
}
});
}

View File

@ -63,9 +63,6 @@ void InoreaderNetworkFactory::initializeOauth() {
QSqlDatabase database = qApp->database()->connection(metaObject()->className());
DatabaseQueries::storeNewOauthTokens(database, QSL("InoreaderAccounts"), refresh_token, m_service->accountId());
qApp->showGuiMessage(tr("Logged in successfully"),
tr("Your login to Inoreader was authorized."),
QSystemTrayIcon::MessageIcon::Information);
}
});
}