修复快速切换歌曲时, 会出现播放的歌曲和界面展示的歌曲不一致的问题
parent
c4ae0dddb0
commit
f2fb37df4c
|
@ -7,6 +7,10 @@
|
||||||
|
|
||||||
- 优化播放歌曲换源匹配
|
- 优化播放歌曲换源匹配
|
||||||
|
|
||||||
|
### 修复
|
||||||
|
|
||||||
|
- 修复快速切换歌曲时, 会出现播放的歌曲和界面展示的歌曲不一致的问题
|
||||||
|
|
||||||
### 其他
|
### 其他
|
||||||
|
|
||||||
- 更新electron到9.4.1
|
- 更新electron到9.4.1
|
||||||
|
|
|
@ -581,8 +581,9 @@ export default {
|
||||||
this.musicInfo.url = targetSong.typeUrl[type]
|
this.musicInfo.url = targetSong.typeUrl[type]
|
||||||
this.status = this.statusText = this.$t('core.player.geting_url')
|
this.status = this.statusText = this.$t('core.player.geting_url')
|
||||||
|
|
||||||
return this.getUrl({ musicInfo: targetSong, originMusic, type, isRefresh }).then(() => {
|
return this.getUrl({ musicInfo: targetSong, originMusic, type, isRefresh }).then(url => {
|
||||||
audio.src = this.musicInfo.url = targetSong.typeUrl[type]
|
if ((targetSong !== this.targetSong && originMusic !== this.targetSong) || this.isPlay) return
|
||||||
|
audio.src = this.musicInfo.url = url
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
// console.log('err', err.message)
|
// console.log('err', err.message)
|
||||||
if (err.message == requestMsg.cancelRequest) return
|
if (err.message == requestMsg.cancelRequest) return
|
||||||
|
|
|
@ -119,12 +119,13 @@ const actions = {
|
||||||
// return Promise.reject(new Error('该歌曲没有可播放的音频'))
|
// return Promise.reject(new Error('该歌曲没有可播放的音频'))
|
||||||
}
|
}
|
||||||
if (urlRequest && urlRequest.cancelHttp) urlRequest.cancelHttp()
|
if (urlRequest && urlRequest.cancelHttp) urlRequest.cancelHttp()
|
||||||
if (musicInfo.typeUrl[type] && !isRefresh) return Promise.resolve()
|
if (musicInfo.typeUrl[type] && !isRefresh) return Promise.resolve(musicInfo.typeUrl[type])
|
||||||
urlRequest = music[musicInfo.source].getMusicUrl(musicInfo, type)
|
urlRequest = music[musicInfo.source].getMusicUrl(musicInfo, type)
|
||||||
return urlRequest.promise.then(result => {
|
return urlRequest.promise.then(({ url }) => {
|
||||||
if (originMusic) commit('setUrl', { musicInfo: originMusic, url: result.url, type })
|
if (originMusic) commit('setUrl', { musicInfo: originMusic, url, type })
|
||||||
commit('setUrl', { musicInfo, url: result.url, type })
|
commit('setUrl', { musicInfo, url, type })
|
||||||
urlRequest = null
|
urlRequest = null
|
||||||
|
return url
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
urlRequest = null
|
urlRequest = null
|
||||||
return Promise.reject(err)
|
return Promise.reject(err)
|
||||||
|
|
Loading…
Reference in New Issue