Temporarily remove unreliable methods

This commit is contained in:
Dylan
2025-08-23 16:24:34 +01:00
parent b34844e259
commit a314d5f65e

View File

@@ -490,7 +490,8 @@ def fixTweetData(tweet):
return tweet
def extractStatus(url,workaroundTokens=None):
methods=[extractStatusV2Anon,extractStatusV2,extractStatusV2Android,extractStatusV2TweetDetail]
# TODO: commented out methods are too slow/unreliable at the moment
methods=[extractStatusV2Anon,extractStatusV2]#,extractStatusV2Android,extractStatusV2TweetDetail] #
for method in methods:
try:
result = method(url,workaroundTokens)