From bf51a799693237c9c64a7d5fe9f73281d58eafef Mon Sep 17 00:00:00 2001 From: lyswhut Date: Sun, 7 Nov 2021 12:55:58 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/store/modules/player/action.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/store/modules/player/action.js b/src/store/modules/player/action.js index 43cb8a7..666bad9 100644 --- a/src/store/modules/player/action.js +++ b/src/store/modules/player/action.js @@ -66,8 +66,8 @@ let playMusicId = null const getPlayType = (state, songInfo) => { let type = '128k' - const list = state.common.qualityList[songInfo.source] - if (state.common.setting.player.isHighQuality && songInfo._types['320k'] && list && list.includes('320k')) type = '320k' + const list = global.globalObj.qualityList[songInfo.source] + if (state.common.setting.player.highQuality && songInfo._types['320k'] && list && list.includes('320k')) type = '320k' return type }