From df508cabbe2d1fe1e29491a3547a1b4d343595ac Mon Sep 17 00:00:00 2001 From: Ovear Date: Sat, 7 Jan 2023 03:03:38 +0800 Subject: [PATCH] fix fav next button page match --- Modules/functions.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Modules/functions.py b/Modules/functions.py index 0f1d82d..7e8817e 100644 --- a/Modules/functions.py +++ b/Modules/functions.py @@ -160,10 +160,10 @@ def fav_next_button(parse_next_button): print(f"{config.WARN_COLOR}Unable to find next button{config.END}") raise DownloadComplete next_page_link = parse_next_button.attrs["href"] - next_fav_num = re.search(r"\d+", next_page_link) + next_fav_num = re.findall(r"\d+", next_page_link) - if next_fav_num is None: + if len(next_fav_num) <= 0: print(f"{config.WARN_COLOR}Failed to parse next favorite link{config.END}") raise DownloadComplete - return f"{next_fav_num[0]}/next" + return f"{next_fav_num[-1]}/next"