chore: minor cleanup

This commit is contained in:
Cory Dransfeldt 2024-02-20 13:28:39 -08:00
parent e235d80c25
commit f45eb74c0f
No known key found for this signature in database
2 changed files with 3 additions and 12 deletions

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "6.4.2", "version": "6.4.3",
"description": "The source for my personal site. Built using 11ty and hosted on Netlify.", "description": "The source for my personal site. Built using 11ty and hosted on Netlify.",
"type": "module", "type": "module",
"scripts": { "scripts": {

View file

@ -67,20 +67,11 @@ class NowPlaying extends HTMLElement {
} }
get template() { get template() {
return document return document.getElementById(nowPlayingTemplate.id).content.cloneNode(true);
.getElementById(nowPlayingTemplate.id)
.content.cloneNode(true);
} }
get data() { get data() {
const data = fetch('/api/now-playing', { return fetch('/api/now-playing', { type: 'json' }).then((data) => data.json()).catch((e) => {})
type: 'json',
})
.then((data) => data.json())
.catch(() => {
loading.style.display = 'none'
})
return data;
} }
} }