mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
Don't show versions.xml read errors for automatic checks.
This commit is contained in:
parent
8d2578872a
commit
dc5540d2a8
@ -252,10 +252,18 @@ void CheckUpdates::checkForUpdates(bool showWhenCurrent)
|
||||
|
||||
void CheckUpdates::replyFinished(QNetworkReply *reply)
|
||||
{
|
||||
if (showIfCurrent) {
|
||||
if (checkingBox != nullptr)
|
||||
checkingBox->reset();
|
||||
}
|
||||
|
||||
if (reply->error() != QNetworkReply::NoError) {
|
||||
qWarning() << "Update Check Error:" << reply->errorString();
|
||||
reply->deleteLater();
|
||||
if (!showIfCurrent) { // for automatic checks, don't show anything
|
||||
return;
|
||||
}
|
||||
msg = QObject::tr("Unable to check for updates. Please try again later.");
|
||||
// msg += "<br><br>" + reply->errorString();
|
||||
msgIsReady = true;
|
||||
} else {
|
||||
// qDebug() << reply->header(QNetworkRequest::ContentTypeHeader).toString();
|
||||
|
Loading…
Reference in New Issue
Block a user