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.
This commit is contained in:
parent
550b9c3f23
commit
b6b181ca87
|
@ -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: */
|
||||
|
|
Loading…
Reference in New Issue