Skip to content

Commit ec8a554

Browse files
committed
Fix freeze with redirected WFS
1 parent b9e63bb commit ec8a554

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/providers/wfs/qgswfsrequest.cpp

+2-2
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)