Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Fix freeze with redirected WFS
- Loading branch information
Showing
with
2 additions
and
2 deletions.
-
+2
−2
src/providers/wfs/qgswfsrequest.cpp
|
@@ -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; |
|
|
} |
|
|
} |
|
|