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']}`, }) }