mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-19 23:17:21 -06:00
- Properly report paused torrents from Bittorrent session to GUI (closes #86293)
- Removed some verbose debug
This commit is contained in:
@@ -1466,7 +1466,7 @@ void Bittorrent::readAlerts() {
|
||||
if(h.is_paused()) {
|
||||
// XXX: Unfortunately libtorrent-rasterbar does not send a torrent_paused_alert
|
||||
// and the torrent can be paused when metadata is received
|
||||
emit torrentPaused(h);
|
||||
emit pausedTorrent(h);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1478,7 +1478,7 @@ void Bittorrent::readAlerts() {
|
||||
if(h.is_valid()) {
|
||||
emit fullDiskError(h, misc::toQString(p->message()));
|
||||
h.pause();
|
||||
emit torrentPaused(h);
|
||||
emit pausedTorrent(h);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user