From 94f35bbe1eb582046d8f19edcf1facf13103cc43 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Fri, 3 May 2024 11:56:10 -0700 Subject: [PATCH] fix: image dimensions --- ...bbler-using-plex-webhooks-edge-functions-and-blob-storage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/posts/2024/building-a-scrobbler-using-plex-webhooks-edge-functions-and-blob-storage.md b/src/posts/2024/building-a-scrobbler-using-plex-webhooks-edge-functions-and-blob-storage.md index 667bf164..5626c92d 100644 --- a/src/posts/2024/building-a-scrobbler-using-plex-webhooks-edge-functions-and-blob-storage.md +++ b/src/posts/2024/building-a-scrobbler-using-plex-webhooks-edge-functions-and-blob-storage.md @@ -9,7 +9,7 @@ I've written before about [embedding music into my site](https://coryd.dev/posts I could have kept depending on Last.fm and — don't get me wrong — I love Last.fm. It's one of those valuable, legacy services that's hanging on with a rich user base and historical recommendations. I'm going to keep scrobbling data there and to ListenBrainz[^1]. -A diagram of the scrobbling architecture +A diagram of the scrobbling architecture What I've long wanted is something that sits on infrastructure I control, stores my own data and lets me present roughly the same data. Given that Plex will issue outbound webhooks, I thought I'd set up an edge function over at Netlify and point a webhook at it to see what I could do with the inbound payload. What Plex sends is fairly lightweight and ended up needing to be read in from form data on the `POST`, but it was enough to work with.