From: Kent Sutherland Date: Sat, 16 Oct 2004 02:01:15 +0000 (+0000) Subject: I am dumb. Fixed the fix. X-Git-Tag: v1.4~1 X-Git-Url: http://git.ithinksw.org/MenuTunes.git/commitdiff_plain/3c44511cb0f9de3e1698a0a33721f6f140ea2a3a I am dumb. Fixed the fix. --- diff --git a/MenuController.m b/MenuController.m index e0721a4..a7147a4 100755 --- a/MenuController.m +++ b/MenuController.m @@ -238,7 +238,7 @@ } else if ([nextObject isEqualToString:@"trackInfo"]) { ITDebugLog(@"Check to see if a Track is playing..."); //Handle playing radio too - if (_currentTrack != -1 && _currentPlaylist > 1) { + if (_currentTrack != -1 && _currentPlaylist > 0) { NSString *title = nil; NS_DURING title = [mtr currentSongTitle];