From 2515e0e5d14e804f346ee98ab813e21393d59670 Mon Sep 17 00:00:00 2001 From: Abdussamet Kocak Date: Thu, 25 Jun 2026 08:46:51 +0300 Subject: [PATCH] fix(alldebrid): reduce magnet poll frequency --- alldebrid.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alldebrid.py b/alldebrid.py index fd6d4e1..7e0b325 100755 --- a/alldebrid.py +++ b/alldebrid.py @@ -139,7 +139,7 @@ class AlldebridDownloader: links = self.get_torrent_links(magnet_id) if links: return list(pool.map(self._unrestrict_link, links)) - time.sleep(5) + time.sleep(10) return None