chore: update stuff

This commit is contained in:
MattTheTekie 2026-02-27 17:26:30 -05:00
commit 0e7937efd7

View file

@ -54,6 +54,12 @@ async function loadMusicData() {
const data = await response.json();
// Safety check to prevent crashes
if (!data || !data.ols) {
console.error("Music JSON is invalid or blocked by CORS:", data);
return [];
}
const section = data.ols.find(item => item["@id"] === "frutigerAeroBliss");
if (!section) return [];