We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31ea3b7 commit b3de2aeCopy full SHA for b3de2ae
src/renderer/components/MvPlayer.vue
@@ -359,9 +359,6 @@ const loadMvUrl = async (mv: IMvItem) => {
359
360
const handleClose = () => {
361
emit('update:show', false);
362
- if (playerStore.playMusicUrl) {
363
- playerStore.setIsPlay(true);
364
- }
365
};
366
367
const handleEnded = () => {
src/renderer/views/mv/index.vue
@@ -116,8 +116,7 @@ onMounted(async () => {
116
117
const handleShowMv = async (item: IMvItem, index: number) => {
118
playerStore.setIsPlay(false);
119
- playerStore.setPlayMusic(false);
120
- audioService.getCurrentSound()?.pause();
+ audioService.pause();
121
showMv.value = true;
122
currentIndex.value = index;
123
playMvItem.value = item;
0 commit comments