mirror of
https://github.com/Wojtek242/qobuz-dl.git
synced 2024-11-22 11:05:25 +01:00
Handle request exceptions
This commit is contained in:
parent
3919984a75
commit
17c8ff5ece
@ -96,6 +96,7 @@ class QobuzDL:
|
||||
).group(1)
|
||||
|
||||
def download_from_id(self, item_id, album=True, alt_path=None):
|
||||
try:
|
||||
downloader.download_id_by_type(
|
||||
self.client,
|
||||
item_id,
|
||||
@ -107,6 +108,8 @@ class QobuzDL:
|
||||
self.quality_fallback,
|
||||
self.cover_og_quality,
|
||||
)
|
||||
except requests.exceptions.RequestException as e:
|
||||
logger.error(f"Error getting release: {e}")
|
||||
|
||||
def handle_url(self, url):
|
||||
possibles = {
|
||||
|
Loading…
Reference in New Issue
Block a user