Track skip no longer gets stuck on the current track when in Repeat One mode.

CQTexperiment
Christopher Snowhill 2017-12-23 23:33:11 -08:00
parent cf8fd45f02
commit 524e161789
1 changed files with 0 additions and 8 deletions

View File

@ -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)];