From 99840ad886aec9c57985658bb9d52f0e15860612 Mon Sep 17 00:00:00 2001 From: novatorem Date: Mon, 20 Jul 2020 22:36:23 -0400 Subject: [PATCH] Remove replace --- api/spotify-playing.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/spotify-playing.py b/api/spotify-playing.py index e21bb4e..730031c 100644 --- a/api/spotify-playing.py +++ b/api/spotify-playing.py @@ -97,8 +97,8 @@ def makeSVG(data): item = data["item"] img = loadImageB64(item["album"]["images"][1]["url"]) - artist_name = item["artists"][0]["name"].replace("&", "&") - song_name = item["name"].replace("&", "&") + artist_name = item["artists"][0]["name"] + song_name = item["name"] url = item["external_urls"]["spotify"] rendered_data = {