mirror of
https://github.com/Radiquum/furaffinity-dl.git
synced 2025-04-05 15:54:38 +00:00
Fix Next button in gallery download. (#65)
In the current code, if the next button is not found, there is nothing stopping the call to (null).parent This adjusts the call to check if the button is found, and then also checks if the parent is found.
This commit is contained in:
parent
8481d66337
commit
752e82941a
1 changed files with 3 additions and 3 deletions
|
@ -203,12 +203,12 @@ while True:
|
||||||
sleep(args.interval)
|
sleep(args.interval)
|
||||||
|
|
||||||
if args.category != "favorites":
|
if args.category != "favorites":
|
||||||
next_button = s.find('button', class_='button standard', text="Next").parent
|
next_button = s.find('button', class_='button standard', text="Next")
|
||||||
if next_button is None:
|
if next_button is None or next_button.parent is None:
|
||||||
print('Unable to find next button')
|
print('Unable to find next button')
|
||||||
break
|
break
|
||||||
|
|
||||||
page_num = next_button.attrs['action'].split('/')[-2]
|
page_num = next_button.parent.attrs['action'].split('/')[-2]
|
||||||
|
|
||||||
print('Downloading page', page_num, page_url)
|
print('Downloading page', page_num, page_url)
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Add table
Reference in a new issue