Hotfix for NSFW tweets (#125)

This commit is contained in:
Dylan 2023-08-03 14:22:31 +01:00
parent e953ccac80
commit e230043e85

View File

@ -165,7 +165,7 @@ def extractStatus(url):
for method in methods:
try:
return method(url)
except twExtractError.TwExtractError as e:
except Exception as e:
continue
raise twExtractError.TwExtractError(400, "Extract error")