From c9819b2694c71476d1f25ad910f98dc24041af22 Mon Sep 17 00:00:00 2001 From: Mitchell Livingston Date: Thu, 28 Sep 2006 23:32:59 +0000 Subject: [PATCH] Determine stats before originally starting torrent from history. --- macosx/Torrent.m | 3 +++ 1 file changed, 3 insertions(+) diff --git a/macosx/Torrent.m b/macosx/Torrent.m index fbf07641a..7819fef54 100644 --- a/macosx/Torrent.m +++ b/macosx/Torrent.m @@ -89,7 +89,10 @@ static uint32_t kRed = BE(0xFF6450FF), //255, 100, 80 NSString * paused; if (!(paused = [history objectForKey: @"Paused"]) || [paused isEqualToString: @"NO"]) + { + fStat = tr_torrentStat(fHandle); [self startTransfer]; + } } return self; }