diff --git a/server/app/api/album.py b/server/app/api/album.py index a7eef531..ada2555f 100644 --- a/server/app/api/album.py +++ b/server/app/api/album.py @@ -58,7 +58,7 @@ def get_album_tracks(): def get_album_bio(): """Returns the album bio for the given album.""" data = request.get_json() - fetch_bio = FetchAlbumBio(data["album"], data["albumartist"])() + fetch_bio = FetchAlbumBio(data["album"], data["albumartist"]) bio = fetch_bio() if bio is None: