mirror of
https://github.com/Radiquum/furaffinity-dl.git
synced 2025-04-05 15:54:38 +00:00
fix fav next button page match
This commit is contained in:
parent
bfc1b00a4e
commit
df508cabbe
1 changed files with 3 additions and 3 deletions
|
@ -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"
|
||||
|
|
Loading…
Add table
Reference in a new issue