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']
def extractStatus(url):
methods=[extractStatus_syndication,extractStatusV2Legacy]
methods=[extractStatusV2Legacy]
for method in methods:
try:
return method(url)