cleanup schema

This commit is contained in:
wryk
2020-02-22 03:39:15 +01:00
parent c43b455505
commit f60bc914c1
9 changed files with 129 additions and 173 deletions

View File

@ -1,5 +1,5 @@
<svelte:head>
<title>{`${ $current ? `${$current.title} ` : ''}Eldritch Radio`}</title>
<title>{`${ $current ? `${$current.media.title} ` : ''}Eldritch Radio`}</title>
</svelte:head>
<div class="app container">
@ -69,7 +69,7 @@
return $iterator.next().then(({ done, value }) => {
enqueueing.set(false)
return value
})
}).catch(console.error)
} else {
return $nextPromise
}
@ -94,7 +94,7 @@
const select = track => {
console.log(`Select ${track.title}`)
console.log(`Select ${track.media.title}`)
current.set(track)
}