Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[bugfix] Fixes QgsFileDownloader abort on error
Abort reply on error.

Fixes #171410

Requires backport
  • Loading branch information
elpaso committed Nov 8, 2017
1 parent f06ea87 commit 6b9b513
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/core/qgsfiledownloader.cpp
Expand Up @@ -113,6 +113,8 @@ void QgsFileDownloader::error( const QStringList &errorMessages )
{
mErrors << errorMessages[i];
}
if ( mReply )
mReply->abort();
emit downloadError( mErrors );
}

Expand Down

0 comments on commit 6b9b513

Please sign in to comment.