From fdcdba42c1381a6551fa74073d2eb06e08b3b0cb Mon Sep 17 00:00:00 2001 From: Mitchell Livingston Date: Sat, 26 May 2007 07:21:14 +0000 Subject: [PATCH] typo fix --- macosx/Torrent.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macosx/Torrent.m b/macosx/Torrent.m index 13e47c21d..b44e07fea 100644 --- a/macosx/Torrent.m +++ b/macosx/Torrent.m @@ -1358,7 +1358,7 @@ static uint32_t kRed = BE(0xFF6450FF), //255, 100, 80 - (NSDate *) dateActivity { uint64_t date = fStat->activityDate / 1000; - return date == 0 ? [NSDate dateWithTimeIntervalSince1970: date] : fDateActivity; + return date != 0 ? [NSDate dateWithTimeIntervalSince1970: date] : fDateActivity; } - (int) stalledSeconds