Commit b6b181ca authored by Max Kellermann's avatar Max Kellermann

decoder_thread: re-enable file decoders

By accident, I committed a debug flag, which disallowed the decoder thread to play files locally. Undo this hunk.
parent 550b9c3f
......@@ -127,7 +127,7 @@ static void decoder_run_song(const struct song *song, const char *uri)
pcm_convert_init(&decoder.conv_state);
ret = false;
if (!song_is_file(song) || true) {
if (!song_is_file(song)) {
unsigned int next = 0;
/* first we try mime types: */
......
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