From 7915b49b03a8e4811bde47e20d1b52ceb84c3977 Mon Sep 17 00:00:00 2001 From: Jordan Lee Date: Thu, 4 Aug 2011 04:31:14 +0000 Subject: [PATCH] revert the last commit -- the Mac client uses the isIdle flag to know when hibernation is allowed --- libtransmission/torrent.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libtransmission/torrent.c b/libtransmission/torrent.c index c7db512a5..45023051d 100644 --- a/libtransmission/torrent.c +++ b/libtransmission/torrent.c @@ -1141,8 +1141,7 @@ torrentGetIdleSecs( const tr_torrent * tor ) bool tr_torrentIsStalled( const tr_torrent * tor ) { - return tr_sessionGetQueueEnabled( tor->session, tr_torrentGetQueueDirection( tor ) ) - && ( torrentGetIdleSecs( tor ) > ( tr_sessionGetQueueStalledMinutes( tor->session ) * 60 ) ); + return torrentGetIdleSecs( tor ) > ( tr_sessionGetQueueStalledMinutes( tor->session ) * 60 ); }