Remove syndication as method

This commit is contained in:
Dylan 2023-08-13 15:02:41 +01:00
parent c11db60eee
commit e0713a8eeb

View File

@ -161,7 +161,7 @@ def extractStatusV2Legacy(url):
return tweet['legacy'] return tweet['legacy']
def extractStatus(url): def extractStatus(url):
methods=[extractStatus_syndication,extractStatusV2Legacy] methods=[extractStatusV2Legacy]
for method in methods: for method in methods:
try: try:
return method(url) return method(url)