use all flag to check drives

This commit is contained in:
mungai-njoroge
2023-11-14 12:54:28 +03:00
parent 5f1bb28f5d
commit 1d71ba856b
5 changed files with 26 additions and 8 deletions
+5 -1
View File
@@ -68,7 +68,11 @@ class LyricsProvider(LRCProvider):
t = str(int(time.time() * 1000))
query.append(("t", t))
url = self.ROOT_URL + action
try:
url = self.ROOT_URL + action
except TypeError:
return None
try:
response = self.session.get(url, params=query)