X-Git-Url: http://git.ithinksw.org/MenuTunes.git/blobdiff_plain/36c3c74d44819ba8132041dc3b4ee793c2109a69..7f6104672f5d8a1ca5eb046ef7f5bac51a9acd80:/MainController.m diff --git a/MainController.m b/MainController.m index 518d86f..e6d338b 100755 --- a/MainController.m +++ b/MainController.m @@ -533,7 +533,10 @@ static MainController *sharedController; } if ( [df boolForKey:@"showTrackRating"] ) { - rating = ( [currentRemote currentSongRating] * 5 ); + float currentRating = [currentRemote currentSongRating]; + if (currentRating >= 0.0) { + rating = ( currentRating * 5 ); + } } } else {