From 66468389c671b6f4a7fa70e6ab216accdc134d02 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Wed, 8 May 2024 12:48:58 -0700 Subject: [PATCH] fix: query --- api/scrobble.js | 2 +- package-lock.json | 4 ++-- package.json | 2 +- .../improving-my-self-hosted-scrobbling-implementation.md | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/api/scrobble.js b/api/scrobble.js index b160c9c7..369e7e61 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('key', artistKey) + .eq('name_key', artistKey) .single() if (artistError && artistError.code === 'PGRST116') { diff --git a/package-lock.json b/package-lock.json index cf254ab4..b5c6ccfd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "coryd.dev", - "version": "14.0.5", + "version": "14.0.6", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "coryd.dev", - "version": "14.0.5", + "version": "14.0.6", "license": "MIT", "dependencies": { "@cdransf/api-text": "^1.2.2", diff --git a/package.json b/package.json index cde122bc..3201b0ec 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "14.0.5", + "version": "14.0.6", "description": "The source for my personal site. Built using 11ty.", "type": "module", "scripts": { diff --git a/src/posts/2024/improving-my-self-hosted-scrobbling-implementation.md b/src/posts/2024/improving-my-self-hosted-scrobbling-implementation.md index e00a70f7..6baaaa40 100644 --- a/src/posts/2024/improving-my-self-hosted-scrobbling-implementation.md +++ b/src/posts/2024/improving-my-self-hosted-scrobbling-implementation.md @@ -92,7 +92,7 @@ export default async (request) => { const { data: artistData, error: artistError } = await supabase .from('artists') .select('*') - .eq('key', artistKey) + .eq('name_key', artistKey) .single() if (artistError && artistError.code === 'PGRST116') {