Update lastplayed.js

This commit is contained in:
catmpeg 2026-01-25 21:39:00 +03:00
commit 06b51bbe7a

View file

@ -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));
});
});