Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
15 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Handle the new account disabled message
  • Loading branch information
Deer-Spangle committed Dec 11, 2025
commit 75e32d3f1204a1ad89ae9a5b671b5a42a175f31c
3 changes: 3 additions & 0 deletions lib/faexport/scraper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1428,6 +1428,9 @@ def check_errors(html, url)
if maintable_content.include?("has voluntarily disabled access to their account and all of its contents.")
raise FAAccountDisabledError.new(url)
end
if maintable_content.include?("Access has been disabled to the account and contents of user")
raise FAAccountDisabledError.new(url)
end

# Handle user not existing (this version of the error is raised by watchers lists and galleries)
if maintable_content.include?("Provided username not found in the database.") ||
Expand Down
Loading