X-Git-Url: http://git.ithinksw.org/MenuTunes.git/blobdiff_plain/538382d5a1cd3e5f194c5354a5c9f07b774ab5bf..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 {