Merge pull request 'fix: check if the selected track equal the track in the progress' (#17) from save-and-restore-progress-for-audio into main
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #17
This commit is contained in:
commit
fa75ba4ad7
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"backend_dev": "http://localhost:31204",
|
"backend_de": "http://localhost:31204",
|
||||||
"backend_de": "https://webplay.rocks",
|
"backend_dev": "https://webplay.rocks",
|
||||||
"backend": "https://webplay.rocks"
|
"backend": "https://webplay.rocks"
|
||||||
}
|
}
|
@ -146,7 +146,9 @@ export default {
|
|||||||
this.pushHistoryItem();
|
this.pushHistoryItem();
|
||||||
|
|
||||||
if (this.currentTrackParent.progress) {
|
if (this.currentTrackParent.progress) {
|
||||||
|
if (this.currentTrackParent.progress.id == this.selectedTrack._id) {
|
||||||
this.skipToSecond(this.currentTrackParent.progress.progress);
|
this.skipToSecond(this.currentTrackParent.progress.progress);
|
||||||
|
}
|
||||||
this.currentTrackParent.progress = undefined;
|
this.currentTrackParent.progress = undefined;
|
||||||
} else {
|
} else {
|
||||||
// Try to fix SAFARI
|
// Try to fix SAFARI
|
||||||
|
Loading…
Reference in New Issue
Block a user