diff --git a/twExtract/__init__.py b/twExtract/__init__.py index 9801bbc..f72390d 100644 --- a/twExtract/__init__.py +++ b/twExtract/__init__.py @@ -161,7 +161,8 @@ def extractStatusV2Legacy(url): return tweet['legacy'] def extractStatus(url): - methods=[extractStatus_guestToken,extractStatus_syndication,extractStatus_token,extractStatusV2Legacy] + #methods=[extractStatus_guestToken,extractStatus_syndication,extractStatus_token,extractStatusV2Legacy] + methods=[extractStatus_syndication,extractStatusV2Legacy] for method in methods: try: return method(url)