Skip to content

Commit 3af4c3d

Browse files
committed
Avoid error messages when checking for updates
When using rare network settings errors might occur when checking for updates. Instead of displaying an irritating error message when starting the application, just silently ignore errors. This is far from perfect but at least does not make things worse because even if you see the error message this commit hides, you would not be able to do much about it. See issue #2759.
1 parent f1df40c commit 3af4c3d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/MainWindow.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ void MainWindow::init()
115115
QString url = info.at(1).trimmed();
116116
checkNewVersion(version, url);
117117
}
118-
});
118+
}, false, true);
119119
}
120120
#endif
121121

0 commit comments

Comments
 (0)