From b6b181ca874f99d47151f4947c9a62bc851bdd68 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 11 Feb 2009 19:58:50 +0100 Subject: 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. --- src/decoder_thread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/decoder_thread.c b/src/decoder_thread.c index b7939111a..97555f44d 100644 --- a/src/decoder_thread.c +++ b/src/decoder_thread.c @@ -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: */ -- cgit v1.2.3