mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2026-01-01 13:18:06 -06:00
BUGFIX: Fix torrent error state clearance on resuming
This commit is contained in:
@@ -450,7 +450,7 @@ QString QTorrentHandle::root_path() const {
|
||||
|
||||
bool QTorrentHandle::has_error() const {
|
||||
Q_ASSERT(h.is_valid());
|
||||
return h.status().error.empty();
|
||||
return h.is_paused() && !h.status().error.empty();
|
||||
}
|
||||
|
||||
void QTorrentHandle::downloading_pieces(bitfield &bf) const {
|
||||
|
||||
Reference in New Issue
Block a user