修复错误更新试听列表外的歌曲时间的问题
parent
0332b81d58
commit
af426d28c1
|
@ -17,6 +17,7 @@
|
|||
- 修复某些情况下可能导致的音源输出问题
|
||||
- 修复某些情况下无法开始下载任务的问题
|
||||
- 修复 tab 组件边框溢出问题
|
||||
- 修复错误更新试听列表外的歌曲时间的问题
|
||||
|
||||
### 更变
|
||||
|
||||
|
|
|
@ -254,7 +254,7 @@ export default {
|
|||
this.audio.currentTime = this.audioErrorTime
|
||||
this.audioErrorTime = 0
|
||||
}
|
||||
if (!this.targetSong.interval && this.listId != 'download') this.updateMusicInfo({ id: 'default', index: this.playIndex, data: { interval: formatPlayTime2(this.maxPlayTime) } })
|
||||
if (!this.targetSong.interval && this.listId != 'download') this.updateMusicInfo({ id: this.listId, index: this.playIndex, data: { interval: formatPlayTime2(this.maxPlayTime) } })
|
||||
this.status = this.statusText = this.$t('core.player.loading')
|
||||
})
|
||||
this.audio.addEventListener('loadstart', () => {
|
||||
|
|
Loading…
Reference in New Issue