mirror of
https://github.com/GiriNeko/YesPlayMusic.git
synced 2025-12-17 13:48:02 +00:00
fix(player): fix cannot switch next track in personalFM (#536)
fix #501
This commit is contained in:
parent
f50c210725
commit
5cf0092b4f
1 changed files with 1 additions and 1 deletions
|
|
@ -342,7 +342,7 @@ export default class {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
_nextTrackCallback() {
|
_nextTrackCallback() {
|
||||||
if (this.repeatMode === "one") {
|
if (!this.isPersonalFM && this.repeatMode === "one") {
|
||||||
this._replaceCurrentTrack(this._currentTrack.id);
|
this._replaceCurrentTrack(this._currentTrack.id);
|
||||||
} else {
|
} else {
|
||||||
this.playNextTrack();
|
this.playNextTrack();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue