chore: scrobble bugs
This commit is contained in:
parent
b0d837b4b7
commit
9abd1dbd32
2 changed files with 4 additions and 4 deletions
|
@ -55,7 +55,7 @@ export default async (request) => {
|
||||||
const { data: artistData, error: artistError } = await supabase
|
const { data: artistData, error: artistError } = await supabase
|
||||||
.from('artists')
|
.from('artists')
|
||||||
.select('*')
|
.select('*')
|
||||||
.eq('name_key', artistKey)
|
.eq('name_string', artist)
|
||||||
.single()
|
.single()
|
||||||
|
|
||||||
if (artistError && artistError.code === 'PGRST116') {
|
if (artistError && artistError.code === 'PGRST116') {
|
||||||
|
@ -63,8 +63,8 @@ export default async (request) => {
|
||||||
{
|
{
|
||||||
mbid: null,
|
mbid: null,
|
||||||
image: `https://coryd.dev/media/artists/${artistKey}.jpg`,
|
image: `https://coryd.dev/media/artists/${artistKey}.jpg`,
|
||||||
key: albumKey,
|
key: artistKey,
|
||||||
name: album,
|
name: artist,
|
||||||
tentative: true
|
tentative: true
|
||||||
}
|
}
|
||||||
])
|
])
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "14.0.7",
|
"version": "14.0.8",
|
||||||
"description": "The source for my personal site. Built using 11ty.",
|
"description": "The source for my personal site. Built using 11ty.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
Reference in a new issue