diff --git a/twExtract/__init__.py b/twExtract/__init__.py index 044df04..47e5ae9 100644 --- a/twExtract/__init__.py +++ b/twExtract/__init__.py @@ -164,7 +164,7 @@ def extractStatusV2Legacy(url): return tweet['legacy'] def extractStatus(url): - methods=[extractStatusV2Legacy] + methods=[extractStatus_syndication,extractStatusV2Legacy] for method in methods: try: return method(url)