From: Kent Sutherland Date: Sat, 16 Oct 2004 01:18:10 +0000 (+0000) Subject: Hopefully fixed a dumb error. X-Git-Tag: v1.4~2 X-Git-Url: http://git.ithinksw.org/MenuTunes.git/commitdiff_plain/85e567aca046a76da589f1cdb3fe22354efdd187 Hopefully fixed a dumb error. --- diff --git a/MenuController.m b/MenuController.m index dfa9a03..e0721a4 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) { + if (_currentTrack != -1 && _currentPlaylist > 1) { NSString *title = nil; NS_DURING title = [mtr currentSongTitle];