aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-02-11 19:58:50 +0100
committerMax Kellermann <max@duempel.org>2009-02-11 19:58:50 +0100
commitb6b181ca874f99d47151f4947c9a62bc851bdd68 (patch)
tree191d755cccedfaecd0cc618a7c7dc8dc007bc27e /src
parent550b9c3f2350a8ea6f6921ae4bff4c92d2dc386c (diff)
downloadmpd-b6b181ca874f99d47151f4947c9a62bc851bdd68.tar.gz
mpd-b6b181ca874f99d47151f4947c9a62bc851bdd68.tar.xz
mpd-b6b181ca874f99d47151f4947c9a62bc851bdd68.zip
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.
Diffstat (limited to 'src')
-rw-r--r--src/decoder_thread.c2
1 files changed, 1 insertions, 1 deletions
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: */