This commit is contained in:
Martin Rotter 2018-01-04 06:37:47 +01:00
parent da63a1fd0e
commit adddf12c87
2 changed files with 1 additions and 3 deletions

View File

@ -2,6 +2,7 @@
—————
Fixed:
▪ Unnecessary "Welcome" notifications. (bug #176)
▪ Bad handling of null/empty strings when inserting messages into DB. (bug #169)
▪ Bad conversion of "created on" date/time in TT-RSS plugin. (bug #172)
▪ Missing obligatory attribute in OPML 2.0 files. (bug #166)

View File

@ -141,9 +141,6 @@ int main(int argc, char* argv[]) {
FormAbout(qApp->mainForm()).exec();
});
}
else {
qApp->showGuiMessage(QSL(APP_NAME), QObject::tr("Welcome to %1.").arg(APP_NAME), QSystemTrayIcon::NoIcon);
}
if (qApp->settings()->value(GROUP(General), SETTING(General::UpdateOnStartup)).toBool()) {
QObject::connect(qApp->system(), &SystemFactory::updatesChecked, [](QPair<QList<UpdateInfo>, QNetworkReply::NetworkError> updates) {