From a58ddebd23a2590686a004fc5e78312d52321b2c Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Thu, 2 Mar 2023 15:08:22 -0500 Subject: [PATCH] Fix typo in audiodb lookup --- vrobbler/apps/scrobbles/theaudiodb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vrobbler/apps/scrobbles/theaudiodb.py b/vrobbler/apps/scrobbles/theaudiodb.py index 0abbf95..63e4d0b 100644 --- a/vrobbler/apps/scrobbles/theaudiodb.py +++ b/vrobbler/apps/scrobbles/theaudiodb.py @@ -5,7 +5,7 @@ import requests from django.conf import settings THEAUDIODB_API_KEY = getattr(settings, "THEAUDIODB_API_KEY") -ARIST_SEARCH_URL = f"https://www.theaudiodb.com/api/v1/json/{THEAUDIODB_API_KEY}/search.php?s=" +ARTIST_SEARCH_URL = f"https://www.theaudiodb.com/api/v1/json/{THEAUDIODB_API_KEY}/search.php?s=" ALBUM_SEARCH_URL = f"https://www.theaudiodb.com/api/v1/json/{THEAUDIODB_API_KEY}/searchalbum.php?s=" logger = logging.getLogger(__name__)