mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-02-01 04:34:07 +03:00
- Commented fast resume rejected alert until #182 is fixed in libtorrent
This commit is contained in:
parent
26a4040003
commit
bfab6389b5
1 changed files with 2 additions and 1 deletions
|
@ -1138,7 +1138,8 @@ void bittorrent::readAlerts() {
|
||||||
QTorrentHandle h(p->handle);
|
QTorrentHandle h(p->handle);
|
||||||
if(h.is_valid()){
|
if(h.is_valid()){
|
||||||
qDebug("/!\\ Fast resume failed for %s, reason: %s", h.name().toUtf8().data(), p->msg().c_str());
|
qDebug("/!\\ Fast resume failed for %s, reason: %s", h.name().toUtf8().data(), p->msg().c_str());
|
||||||
emit fastResumeDataRejected(h.name());
|
// TODO: uncomment this when #182 in libtorrent is fixed
|
||||||
|
//emit fastResumeDataRejected(h.name());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (url_seed_alert* p = dynamic_cast<url_seed_alert*>(a.get())) {
|
else if (url_seed_alert* p = dynamic_cast<url_seed_alert*>(a.get())) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue