mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
fix: disabled YouTube integration still making requests
This commit is contained in:
parent
dae5605098
commit
62b8e226ab
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue