From d9209f843ef6ede774291749ddcec5dfd3b9f92b Mon Sep 17 00:00:00 2001 From: Johan Andersson Date: Wed, 24 Nov 2021 22:55:58 +0100 Subject: [PATCH] svtplay: dont download related videos with -A fixes: #1443 --- lib/svtplay_dl/service/svtplay.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/svtplay_dl/service/svtplay.py b/lib/svtplay_dl/service/svtplay.py index 5a10a06..c263dfd 100644 --- a/lib/svtplay_dl/service/svtplay.py +++ b/lib/svtplay_dl/service/svtplay.py @@ -205,7 +205,7 @@ class Svtplay(Service, MetadataThumbMixin): if tab == i["id"]: collections.append(i) else: - if i["id"] == "upcoming": + if i["id"] == "upcoming" or i["id"] == "related": continue elif self.config.get("include_clips") and "clips" in i["id"]: collections.append(i)