diff --git a/api/scrobble.js b/api/scrobble.js index 369e7e61..06bf06e9 100644 --- a/api/scrobble.js +++ b/api/scrobble.js @@ -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 } ]) diff --git a/package.json b/package.json index deee3a58..93e14770 100644 --- a/package.json +++ b/package.json @@ -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": {