Commit ae5dd2da authored by Max Kellermann's avatar Max Kellermann

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.
parent f4b61e8c
ver 0.18.2 (2013/??/??)
* playlist:
- pls: fix reversed song order
* decoder:
- dsf: enable DSD128
* fix build failures due to missing includes
......
......@@ -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));
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment