Browse Source

- BUGFIX: Torrents paused due to an I/O error were displayed as queued

adaptive-webui-19844
Christophe Dumez 16 years ago
parent
commit
ae81dbe088
  1. 1
      Changelog
  2. 1
      src/bittorrent.cpp

1
Changelog

@ -1,4 +1,5 @@ @@ -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

1
src/bittorrent.cpp

@ -1138,6 +1138,7 @@ void bittorrent::readAlerts() { @@ -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…
Cancel
Save