From adbee53efa3257f72d38d4e17a7644b5bb54735f Mon Sep 17 00:00:00 2001 From: Mitchell Livingston Date: Mon, 7 Apr 2008 04:05:57 +0000 Subject: [PATCH] for now just show "remaining time unknown" for not available downloads --- macosx/Torrent.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/macosx/Torrent.m b/macosx/Torrent.m index b413b4357..5f18d86b9 100644 --- a/macosx/Torrent.m +++ b/macosx/Torrent.m @@ -1835,10 +1835,10 @@ void completenessChangeCallback(tr_torrent * torrent, cp_status_t status, void * { switch (eta) { + case TR_ETA_NOT_AVAIL: + //return NSLocalizedString(@"full download not available", "Torrent -> eta string"); case TR_ETA_UNKNOWN: return NSLocalizedString(@"remaining time unknown", "Torrent -> eta string"); - case TR_ETA_NOT_AVAIL: - return NSLocalizedString(@"full download not available", "Torrent -> eta string"); default: return [NSString stringWithFormat: NSLocalizedString(@"%@ remaining", "Torrent -> eta string"), [NSString timeString: eta showSeconds: YES maxDigits: 2]];