From 022191e59defbb29fd755361ff7189a6548d0419 Mon Sep 17 00:00:00 2001
From: Luca Bilke <luca@snaile.de>
Date: Tue, 27 Jun 2023 17:28:37 +0200
Subject: [PATCH] add timeout even if track not downloaded

---
 tidal_scrape.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/tidal_scrape.py b/tidal_scrape.py
index 73d010c..b9bbd17 100755
--- a/tidal_scrape.py
+++ b/tidal_scrape.py
@@ -177,4 +177,6 @@ for i, album in enumerate(albums):
         check, _ = download_track(track)
         if check:
             time.sleep(3)
+        else:
+            time.sleep(0.5)
     print("\n")