X-Git-Url: http://git.ithinksw.org/MenuTunes.git/blobdiff_plain/36c3c74d44819ba8132041dc3b4ee793c2109a69..5ba3df3581e79b113dcf5eb6346baf246fa49da2:/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 {