summaryrefslogtreecommitdiff
path: root/playlist.c
diff options
context:
space:
mode:
authorGravatar Alexey Yakovenko <wakeroid@gmail.com>2009-09-16 20:15:44 +0200
committerGravatar Alexey Yakovenko <wakeroid@gmail.com>2009-09-16 20:15:44 +0200
commit743cf8e3a236a18080de2fb9467185d54e60afe4 (patch)
treecb0d30690fc8386e06afc97981074e41ab198ef4 /playlist.c
parent635c9daea388c25793585aada5a1a7f7dde3d296 (diff)
gapless playback now can skip through deleted items
Diffstat (limited to 'playlist.c')
-rw-r--r--playlist.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/playlist.c b/playlist.c
index f99958a1..bbe99e3e 100644
--- a/playlist.c
+++ b/playlist.c
@@ -473,6 +473,7 @@ int
pl_remove (playItem_t *it) {
if (!it)
return -1;
+ streamer_song_removed_notify (it);
pl_count--;
if (playlist_current_ptr == it) {
playlist_current_ptr = NULL;