Browse Source

Remove replace

add-license-1
novatorem 5 years ago
parent
commit
99840ad886
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      api/spotify-playing.py

+ 2
- 2
api/spotify-playing.py View File

@ -97,8 +97,8 @@ def makeSVG(data):
item = data["item"] item = data["item"]
img = loadImageB64(item["album"]["images"][1]["url"]) 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"] url = item["external_urls"]["spotify"]
rendered_data = { rendered_data = {


Loading…
Cancel
Save