fix call params
This commit is contained in:
parent
c08c8591ec
commit
e7421c5803
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@
|
||||||
nowPlayingWrapper.insertAdjacentHTML("beforeEnd", cachedTemplate);
|
nowPlayingWrapper.insertAdjacentHTML("beforeEnd", cachedTemplate);
|
||||||
}
|
}
|
||||||
|
|
||||||
fetch("https://utils.coryd.dev/api/music?limit=1&period=7day")
|
fetch("https://utils.coryd.dev/api/music?limit=1")
|
||||||
.then((response) => response.json())
|
.then((response) => response.json())
|
||||||
.then((data) => {
|
.then((data) => {
|
||||||
const track = data.recenttracks.track[0];
|
const track = data.recenttracks.track[0];
|
||||||
|
|
Reference in a new issue