Skip to content

Commit 72e99d5

Browse files
authored
Merge pull request #7602 from m-kuhn/wfsFix
Fix freeze with redirected WFS
2 parents cca7141 + ec8a554 commit 72e99d5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/providers/wfs/qgswfsrequest.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -351,8 +351,8 @@ void QgsWfsRequest::replyFinished()
351351
emit downloadFinished();
352352
return;
353353
}
354-
connect( mReply, &QNetworkReply::finished, this, &QgsWfsRequest::replyFinished );
355-
connect( mReply, &QNetworkReply::downloadProgress, this, &QgsWfsRequest::replyProgress );
354+
connect( mReply, &QNetworkReply::finished, this, &QgsWfsRequest::replyFinished, Qt::DirectConnection );
355+
connect( mReply, &QNetworkReply::downloadProgress, this, &QgsWfsRequest::replyProgress, Qt::DirectConnection );
356356
return;
357357
}
358358
}

0 commit comments

Comments
 (0)