From fcba471ef6915776f6835e91e9fcf8d3c345eb00 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Sun, 8 Oct 2023 12:06:40 -0700 Subject: [PATCH] chore: update separator --- netlify/edge-functions/now-playing.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netlify/edge-functions/now-playing.js b/netlify/edge-functions/now-playing.js index ece4f92d..0b79167f 100644 --- a/netlify/edge-functions/now-playing.js +++ b/netlify/edge-functions/now-playing.js @@ -24,7 +24,7 @@ export default async () => { return Response.json({ title: traktRes['show']['title'], episode: traktRes['episode']['title'], - text: `📺 ${traktRes['show']['title']}: ${traktRes['episode']['title']}`, + text: `📺 ${traktRes['show']['title']} • ${traktRes['episode']['title']}`, }) }