diff --git a/assets/lastplayed.js b/assets/lastplayed.js index bd93cf0..1033a89 100644 --- a/assets/lastplayed.js +++ b/assets/lastplayed.js @@ -1,7 +1,7 @@ document.addEventListener("DOMContentLoaded", () => { const lastPlayedBlock = document.getElementById('last-played'); - fetch("https://cat.fs.tlpteam.ru:5011/?user=catmpeg") + fetch("http://cat.fs.tlpteam.ru:5011/?user=catmpeg") .then(response => response.json()) .then(data => { if (data && data.name) { @@ -12,4 +12,4 @@ document.addEventListener("DOMContentLoaded", () => { } }) .catch(err => console.error(err)); -}); \ No newline at end of file +});