From 0aa5b56250c0803aa863213febc6ee5f89797822 Mon Sep 17 00:00:00 2001 From: areff Date: Tue, 26 Feb 2008 11:59:47 +0000 Subject: [PATCH] Fixed a bug in Stop after current that was causing some odd behaviour. --- Application/PlaybackController.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Application/PlaybackController.m b/Application/PlaybackController.m index 42c31d826..c31f6c689 100644 --- a/Application/PlaybackController.m +++ b/Application/PlaybackController.m @@ -494,7 +494,7 @@ PlaylistEntry *pe; if (curEntry.status == kCogEntryStoppingAfterCurrent) - return; + pe = nil; else pe = [playlistController getNextEntry:curEntry];