fix fav next button page match

This commit is contained in:
Ovear 2023-01-07 03:03:38 +08:00
parent bfc1b00a4e
commit df508cabbe

View file

@ -160,10 +160,10 @@ def fav_next_button(parse_next_button):
print(f"{config.WARN_COLOR}Unable to find next button{config.END}") print(f"{config.WARN_COLOR}Unable to find next button{config.END}")
raise DownloadComplete raise DownloadComplete
next_page_link = parse_next_button.attrs["href"] 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}") print(f"{config.WARN_COLOR}Failed to parse next favorite link{config.END}")
raise DownloadComplete raise DownloadComplete
return f"{next_fav_num[0]}/next" return f"{next_fav_num[-1]}/next"