From a4cdac7f22498289ebe86b7c9fb02b08fb11ee60 Mon Sep 17 00:00:00 2001 From: Anna Schumaker Date: Tue, 17 Apr 2018 08:02:23 -0400 Subject: [PATCH] core/playlists/user: Don't sort user playlists by default Users should be able to add tracks in the order they want. Signed-off-by: Anna Schumaker --- core/playlists/user.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/playlists/user.c b/core/playlists/user.c index 2408abc9..e2fd18af 100644 --- a/core/playlists/user.c +++ b/core/playlists/user.c @@ -15,7 +15,7 @@ static struct user_playlist *__user_db_alloc(gchar *name, unsigned int index) playlist->pl_playlist.pl_type = PL_USER; playlist->pl_playlist.pl_id = index; playlist->pl_playlist.pl_ops = &user_ops; - playlist_generic_init_sorted(&playlist->pl_playlist); + playlist_generic_init(&playlist->pl_playlist); return playlist; }