fix: disabled YouTube integration still making requests

This commit is contained in:
Phan An 2024-07-14 15:57:26 +02:00
parent dae5605098
commit 62b8e226ab

View file

@ -96,7 +96,7 @@ const artist = ref<Artist>()
const album = ref<Album>()
const songPlaying = computed(() => playable.value && isSong(playable.value))
const shouldShowYouTubeTab = computed(() => useYouTube && songPlaying.value)
const shouldShowYouTubeTab = computed(() => useYouTube.value && songPlaying.value)
const fetchSongInfo = async (song: Song) => {
playable.value = song