From 917298517398c670e39135e9a40f1e207dd55617 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Sun, 13 Apr 2008 14:15:19 +0000 Subject: [PATCH] - Force trackers reannounce after loading them from HD --- src/bittorrent.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bittorrent.cpp b/src/bittorrent.cpp index 347faef84..37be3cb16 100644 --- a/src/bittorrent.cpp +++ b/src/bittorrent.cpp @@ -1064,6 +1064,7 @@ bool bittorrent::loadTrackerFile(QString hash) { if(trackers.size() != 0) { QTorrentHandle h = getTorrentHandle(hash); h.replace_trackers(trackers); + h.force_reannounce(); return true; }else{ return false;