From 38ebb40ca35d7045ba02bbdeef288abf97843669 Mon Sep 17 00:00:00 2001 From: Arjix <53124886+ArjixWasTaken@users.noreply.github.com> Date: Mon, 21 Jun 2021 20:50:54 +0300 Subject: [PATCH] Update animerush.py --- anime_downloader/sites/animerush.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/anime_downloader/sites/animerush.py b/anime_downloader/sites/animerush.py index e107d9a..eccad31 100644 --- a/anime_downloader/sites/animerush.py +++ b/anime_downloader/sites/animerush.py @@ -46,10 +46,10 @@ class AnimeRushEpisode(AnimeEpisode, sitename='animerush'): domain_regex = r"\/\/(?:\w{3,6}\.)?(.*?)\." for i in sources: found = False - domain = re.findall(domain_regex, i[0])[0] + domain = re.findall(domain_regex, i[0])[0].lower() for extractor in ALL_EXTRACTORS: - if re.match(extractor['regex'], domain.lower()): + if re.match(extractor['regex'], domain): found = True if not found: