mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-22 09:16:05 +03:00
- BUGFIX: Torrents paused due to an I/O error were displayed as queued
This commit is contained in:
parent
2edbe66d91
commit
ae81dbe088
2 changed files with 2 additions and 0 deletions
|
@ -1,4 +1,5 @@
|
|||
* Unknown - Christophe Dumez <chris@qbittorrent.org> - v1.3.1
|
||||
- BUGFIX: Torrents paused due to an I/O error were displayed as queued
|
||||
- I18N: Updated Bulgarian and Greek translations
|
||||
|
||||
* Fri Jan 9 2009 - Christophe Dumez <chris@qbittorrent.org> - v1.3.0
|
||||
|
|
|
@ -1138,6 +1138,7 @@ void bittorrent::readAlerts() {
|
|||
}
|
||||
else if (file_error_alert* p = dynamic_cast<file_error_alert*>(a.get())) {
|
||||
QTorrentHandle h(p->handle);
|
||||
h.auto_managed(false);
|
||||
qDebug("File Error: %s", p->message().c_str());
|
||||
if(h.is_valid())
|
||||
emit fullDiskError(h);
|
||||
|
|
Loading…
Reference in a new issue