hopefully fixing the not stopping network indicator
This commit is contained in:
parent
2b3e09f8c9
commit
cd53b204a9
1 changed files with 1 additions and 1 deletions
|
|
@ -51,7 +51,7 @@ QNetworkReply *MyNetworkAccessManager::createRequest( QNetworkAccessManager::Ope
|
|||
|
||||
void MyNetworkAccessManager::onError(QNetworkReply::NetworkError e) {
|
||||
qDebug() << "got network error " << (int)e;
|
||||
if (e < QNetworkReply::ContentAccessDenied)
|
||||
if (e < QNetworkReply::ContentAccessDenied && e != QNetworkReply::TemporaryNetworkFailureError)
|
||||
this->error();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue