From efa16a2baa142e529adab5c640858db512fe3a1c Mon Sep 17 00:00:00 2001 From: Peter Deltchev Date: Sun, 13 Sep 2015 00:43:03 -0700 Subject: [PATCH] T350: Fixed the broken show song filter. --- app/Track.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Track.php b/app/Track.php index b6e25417..40bdbcfc 100644 --- a/app/Track.php +++ b/app/Track.php @@ -77,7 +77,7 @@ class Track extends Model public static function summary() { - return self::select('id', 'title', 'user_id', 'slug', 'is_vocal', 'is_explicit', 'created_at', 'published_at', + return self::select('tracks.id', 'title', 'user_id', 'slug', 'is_vocal', 'is_explicit', 'created_at', 'published_at', 'duration', 'is_downloadable', 'genre_id', 'track_type_id', 'cover_id', 'album_id', 'comment_count', 'download_count', 'view_count', 'play_count', 'favourite_count'); }