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
|
||||
.from('artists')
|
||||
.select('*')
|
||||
.eq('name_key', artistKey)
|
||||
.eq('name_string', artist)
|
||||
.single()
|
||||
|
||||
if (artistError && artistError.code === 'PGRST116') {
|
||||
|
@ -63,8 +63,8 @@ export default async (request) => {
|
|||
{
|
||||
mbid: null,
|
||||
image: `https://coryd.dev/media/artists/${artistKey}.jpg`,
|
||||
key: albumKey,
|
||||
name: album,
|
||||
key: artistKey,
|
||||
name: artist,
|
||||
tentative: true
|
||||
}
|
||||
])
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "coryd.dev",
|
||||
"version": "14.0.7",
|
||||
"version": "14.0.8",
|
||||
"description": "The source for my personal site. Built using 11ty.",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
|
|
Reference in a new issue