1
0
mirror of https://github.com/xfjx/TonUINO.git synced 2025-08-17 03:24:27 +02:00

bigfix issue #66

Fehler bei "Titel wiederholen" im Partymodus behoben
This commit is contained in:
GuteLaune
2020-05-31 02:12:08 +02:00
committed by GitHub
parent 1f274b4cb1
commit a5ba83f693

View File

@@ -458,7 +458,12 @@ class RepeatSingleModifier: public Modifier {
Serial.println(F("== RepeatSingleModifier::handleNext() -> REPEAT CURRENT TRACK"));
delay(50);
if (isPlaying()) return true;
if (myFolder->mode == 3 || myFolder->mode == 9){
mp3.playFolderTrack(myFolder->folder, queue[currentTrack - 1]);
}
else{
mp3.playFolderTrack(myFolder->folder, currentTrack);
}
_lastTrackFinished = 0;
return true;
}