fix(Player.js): 右键播放不显示播放器(#1965)

This commit is contained in:
runnableAir 2023-08-19 05:57:32 +08:00
parent fd40a29180
commit a5bf5c7dfd
1 changed files with 1 additions and 0 deletions

View File

@ -936,6 +936,7 @@ export default class {
addTrackToPlayNext(trackID, playNow = false) {
this._playNextList.push(trackID);
if (playNow) {
if (!this._enabled) this._enabled = true;
this.playNextTrack();
}
}