Merge pull request #7602 from m-kuhn/wfsFix

Fix freeze with redirected WFS
This commit is contained in:
Matthias Kuhn 2018-08-13 21:42:59 +02:00 committed by GitHub
commit 72e99d5d3f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -351,8 +351,8 @@ void QgsWfsRequest::replyFinished()
emit downloadFinished();
return;
}
connect( mReply, &QNetworkReply::finished, this, &QgsWfsRequest::replyFinished );
connect( mReply, &QNetworkReply::downloadProgress, this, &QgsWfsRequest::replyProgress );
connect( mReply, &QNetworkReply::finished, this, &QgsWfsRequest::replyFinished, Qt::DirectConnection );
connect( mReply, &QNetworkReply::downloadProgress, this, &QgsWfsRequest::replyProgress, Qt::DirectConnection );
return;
}
}