summaryrefslogtreecommitdiff
path: root/streamer.c
diff options
context:
space:
mode:
Diffstat (limited to 'streamer.c')
-rw-r--r--streamer.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/streamer.c b/streamer.c
index c6d85b00..dd012003 100644
--- a/streamer.c
+++ b/streamer.c
@@ -74,7 +74,11 @@ streamer_song_removed_notify (playItem_t *it) {
}
if (it == orig_streaming_song) {
orig_streaming_song = NULL;
- // FIXME: must queue new next song for streaming
+ // queue new next song for streaming
+ if (bytes_until_next_song > 0) {
+ streambuffer_fill = bytes_until_next_song;
+ pl_nextsong (0);
+ }
}
}