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:
anonusr 2022-02-02 03:17:39 -08:00 committed by GitHub
parent 8481d66337
commit 752e82941a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -203,12 +203,12 @@ while True:
sleep(args.interval)
if args.category != "favorites":
next_button = s.find('button', class_='button standard', text="Next").parent
if next_button is None:
next_button = s.find('button', class_='button standard', text="Next")
if next_button is None or next_button.parent is None:
print('Unable to find next button')
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)
else: