Skip to content

Commit

Permalink
Merge pull request #7602 from m-kuhn/wfsFix
Browse files Browse the repository at this point in the history
Fix freeze with redirected WFS
  • Loading branch information
m-kuhn authored Aug 13, 2018
2 parents cca7141 + ec8a554 commit 72e99d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/providers/wfs/qgswfsrequest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
Expand Down

0 comments on commit 72e99d5

Please sign in to comment.