From 524e161789e6b7895ff7df19edf57884d175b3b6 Mon Sep 17 00:00:00 2001 From: Christopher Snowhill Date: Sat, 23 Dec 2017 23:33:11 -0800 Subject: [PATCH] Track skip no longer gets stuck on the current track when in Repeat One mode. --- Playlist/PlaylistController.m | 8 -------- 1 file changed, 8 deletions(-) diff --git a/Playlist/PlaylistController.m b/Playlist/PlaylistController.m index 6d2930e4c..194b0781d 100644 --- a/Playlist/PlaylistController.m +++ b/Playlist/PlaylistController.m @@ -593,10 +593,6 @@ - (PlaylistEntry *)getNextEntry:(PlaylistEntry *)pe { - if ([self repeat] == RepeatOne) { - return pe; - } - if ([queueList count] > 0) { @@ -659,10 +655,6 @@ - (PlaylistEntry *)getPrevEntry:(PlaylistEntry *)pe { - if ([self repeat] == RepeatOne) { - return pe; - } - if ([self shuffle] != ShuffleOff) { return [self shuffledEntryAtIndex:(pe.shuffleIndex - 1)];