From cda7f5bfb49be0f750278a9871df77901ff53f99 Mon Sep 17 00:00:00 2001 From: Ovear Date: Thu, 29 Sep 2022 15:54:31 +0800 Subject: [PATCH] fix favorites download --- Modules/functions.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Modules/functions.py b/Modules/functions.py index 3789bbd..0f1d82d 100644 --- a/Modules/functions.py +++ b/Modules/functions.py @@ -145,8 +145,10 @@ def next_button(page_url): else: parse_next_button = s.find("a", class_="button standard right", text="Next") page_num = fav_next_button(parse_next_button) + next_page_url = (parse_next_button.parent.attrs['action'] if 'action' + in parse_next_button.parent.attrs else parse_next_button.attrs['href']) print( - f"Downloading page {page_num} - {config.BASE_URL}{parse_next_button.parent.attrs['action']}" + f"Downloading page {page_num} - {config.BASE_URL}{next_page_url}" ) return page_num