From ae5dd2da4fa695a19032136a845ea43e7c105bff Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 5 Nov 2013 18:22:34 +0100 Subject: playlist/pls: fix reversed song order Remove the forward_list::reverse() call. It was not necessary, because pls_parser() already reads the playlist in reverse order. --- src/playlist/PlsPlaylistPlugin.cxx | 1 - 1 file changed, 1 deletion(-) (limited to 'src') diff --git a/src/playlist/PlsPlaylistPlugin.cxx b/src/playlist/PlsPlaylistPlugin.cxx index b6c723b5a..d44a34cdf 100644 --- a/src/playlist/PlsPlaylistPlugin.cxx +++ b/src/playlist/PlsPlaylistPlugin.cxx @@ -155,7 +155,6 @@ pls_open_stream(InputStream &is) pls_parser(keyfile, songs); g_key_file_free(keyfile); - songs.reverse(); return new MemorySongEnumerator(std::move(songs)); } -- cgit v1.2.3