mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-20 23:47:23 -06:00
BUGFIX: Fix possible incorrect behavior with queueing
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
* Unreleased - Christophe Dumez <chris@qbittorrent.org> - v2.4.11
|
* Unreleased - Christophe Dumez <chris@qbittorrent.org> - v2.4.11
|
||||||
- BUGFIX: Do not report a progress of 100% in the Web UI unless the
|
- BUGFIX: Do not report a progress of 100% in the Web UI unless the
|
||||||
torrent is really complete (closes #674349)
|
torrent is really complete (closes #674349)
|
||||||
|
- BUGFIX: Fix possible incorrect behavior with queueing
|
||||||
|
|
||||||
* Wed Nov 10 2010 - Christophe Dumez <chris@qbittorrent.org> - v2.4.10
|
* Wed Nov 10 2010 - Christophe Dumez <chris@qbittorrent.org> - v2.4.10
|
||||||
- BUGFIX: Fix possible crash when selecting a RSS item (really closes #575624)
|
- BUGFIX: Fix possible crash when selecting a RSS item (really closes #575624)
|
||||||
|
|||||||
@@ -2281,7 +2281,7 @@ void Bittorrent::addConsoleMessage(QString msg, QString) {
|
|||||||
else if (file_error_alert* p = dynamic_cast<file_error_alert*>(a.get())) {
|
else if (file_error_alert* p = dynamic_cast<file_error_alert*>(a.get())) {
|
||||||
QTorrentHandle h(p->handle);
|
QTorrentHandle h(p->handle);
|
||||||
if(h.is_valid()) {
|
if(h.is_valid()) {
|
||||||
h.auto_managed(false);
|
h.pause();
|
||||||
std::cerr << "File Error: " << p->message().c_str() << std::endl;
|
std::cerr << "File Error: " << p->message().c_str() << std::endl;
|
||||||
addConsoleMessage(tr("An I/O error occured, '%1' paused.").arg(h.name()));
|
addConsoleMessage(tr("An I/O error occured, '%1' paused.").arg(h.name()));
|
||||||
addConsoleMessage(tr("Reason: %1").arg(misc::toQString(p->message())));
|
addConsoleMessage(tr("Reason: %1").arg(misc::toQString(p->message())));
|
||||||
|
|||||||
Reference in New Issue
Block a user