From 73919dbddb99b1a2193651b32cfe21f1c150cf6c Mon Sep 17 00:00:00 2001 From: Xoconoch Date: Thu, 28 Aug 2025 07:48:09 -0600 Subject: [PATCH] fix: increase connection refused --- deezspot/libutils/librespot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deezspot/libutils/librespot.py b/deezspot/libutils/librespot.py index 6f7971f..40f7fbb 100644 --- a/deezspot/libutils/librespot.py +++ b/deezspot/libutils/librespot.py @@ -152,7 +152,7 @@ class LibrespotClient: except Exception as exc: last_exc = exc if attempt < 3: - time.sleep(1) + time.sleep(3) else: raise last_exc