fix: check if the selected track equal the track in the progress
This commit is contained in:
@@ -146,7 +146,9 @@ export default {
|
||||
this.pushHistoryItem();
|
||||
|
||||
if (this.currentTrackParent.progress) {
|
||||
this.skipToSecond(this.currentTrackParent.progress.progress);
|
||||
if (this.currentTrackParent.progress.id == this.selectedTrack._id) {
|
||||
this.skipToSecond(this.currentTrackParent.progress.progress);
|
||||
}
|
||||
this.currentTrackParent.progress = undefined;
|
||||
} else {
|
||||
// Try to fix SAFARI
|
||||
|
||||
Reference in New Issue
Block a user