diff --git a/src/modules/music.js b/src/modules/music.js index bc4bc81..eb08173 100644 --- a/src/modules/music.js +++ b/src/modules/music.js @@ -199,7 +199,7 @@ async function enqueue({guild_id, voice_id, text_id, url, type, addedBy, suppres } } info = await fetch( - `https://www.googleapis.com/youtube/v3/videos?part=snippet,contentDetails&id=${id}&fields=items%2Fsnippet&key=${hf.apikeys.google}` + `https://www.googleapis.com/youtube/v3/videos?part=snippet,contentDetails&id=${id}&key=${hf.apikeys.google}` ) .then((res) => res.json()) .then((data) => data?.items?.[0]);