Skip to content

Commit

Permalink
Update spoti.py
Browse files Browse the repository at this point in the history
  • Loading branch information
CheapNightbot committed Dec 9, 2024
1 parent 89831d9 commit 98dd04e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yutify/spoti.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ def find_album(self, song, artist, album, artist_ids) -> None:
"release_date": release_date,
"tempo": None,
"title": album["name"],
"upc": album.get("external_ids").get("upc"),
"upc": album.get("external_ids", {}).get("upc"),
"url": album["external_urls"]["spotify"],
}
)
Expand Down

0 comments on commit 98dd04e

Please sign in to comment.