From bfab6389b57be4fc03464d3143d12f4b556c1199 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Fri, 12 Oct 2007 11:54:29 +0000 Subject: [PATCH] - Commented fast resume rejected alert until #182 is fixed in libtorrent --- src/bittorrent.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/bittorrent.cpp b/src/bittorrent.cpp index b055ff7a5..7eaebc8c8 100644 --- a/src/bittorrent.cpp +++ b/src/bittorrent.cpp @@ -1138,7 +1138,8 @@ void bittorrent::readAlerts() { QTorrentHandle h(p->handle); if(h.is_valid()){ 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(a.get())) {