diff --git a/app/Track.php b/app/Track.php index acc49bb3..c84f68ce 100644 --- a/app/Track.php +++ b/app/Track.php @@ -238,6 +238,10 @@ class Track extends Model $processed[] = Track::mapPublicTrackSummary($track); } + // Songs that get played more should drop down + // in the list so they don't hog the top spots. + array_reverse($processed); + return $processed; }