From 0e4e4061f37b0092775cfc984c1939b6ed84655a Mon Sep 17 00:00:00 2001 From: meisnate12 Date: Wed, 13 Jul 2022 09:17:54 -0400 Subject: [PATCH] [23] fix flixpatrol_url --- VERSION | 2 +- modules/flixpatrol.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 68700585..0e7f0ba3 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.17.1-develop22 +1.17.1-develop23 diff --git a/modules/flixpatrol.py b/modules/flixpatrol.py index 83f0f09a..ed3eae80 100644 --- a/modules/flixpatrol.py +++ b/modules/flixpatrol.py @@ -69,7 +69,7 @@ class FlixPatrol: elif list_url.startswith(tuple([v for k, v in urls.items()])): flixpatrol_urls = self._request( list_url, language, - f"//a[@class='flex group' and .//span[.='{'Movie' if is_movie else 'TV Show'}']]/@href" + f"//a[contains(@class, 'flex group') and .//span[.='{'Movie' if is_movie else 'TV Show'}']]/@href" ) return flixpatrol_urls if limit == 0 else flixpatrol_urls[:limit]