Reversed the order that the top X tracks show up in.

This commit is contained in:
Peter Deltchev 2015-12-31 04:20:04 -08:00
parent 3b1fa792cf
commit 79a0129e6d

View file

@ -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;
}