Fix delay of one second when switching at song end

This commit is contained in:
Marie 2021-04-20 22:12:11 +02:00 committed by GitHub
parent df887b8628
commit 5e952e3899
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -277,30 +277,31 @@ setInterval(function () {
currentSong = songDashArtistTitle; currentSong = songDashArtistTitle;
currentPlayStatus = currentStatus; currentPlayStatus = currentStatus;
// make sure current is set to 0 if title changes
if (titleOrArtistChanged) {
options.current = "0:00";
oldcurrent = options.current;
barvalue = barval;
} else {
// check progress bar value and make sure current stays up to date after switch // check progress bar value and make sure current stays up to date after switch
if(barvalue != barval) { if (barvalue != barval) {
barvalue = barval; barvalue = barval;
oldcurrent = options.current; oldcurrent = options.current;
updatecurrent = true; updatecurrent = true;
} }
if(updatecurrent) { if (updatecurrent) {
if(options.current == oldcurrent && currentStatus != "paused") return; if (options.current == oldcurrent && currentStatus != "paused") return;
oldcurrent = options.current; oldcurrent = options.current;
updatecurrent = false; updatecurrent = false;
} }
// make sure current is set to 0 if title changes if (durationChanged) {
if(titleOrArtistChanged) {
options.current = "0:00";
barvalue = barval;
}
if(durationChanged) {
options.duration = duration; options.duration = duration;
options.current = current; options.current = current;
sduration = duration; sduration = duration;
} }
}
const image = elements.getSongIcon(); const image = elements.getSongIcon();