Check for tags before creation date

This commit is contained in:
Gabriel Augendre 2020-05-23 10:26:28 +02:00
parent 6ea44f6ed3
commit 497bac8a83
1 changed files with 2 additions and 2 deletions

View File

@ -166,11 +166,11 @@ def _toot_protection_reason(toot: dict, section) -> Optional[str]:
)
if id_ in protected_toots or original_id in protected_toots:
return "{} or {} is a protected id".format(id_, original_id)
if created_at >= time_limit:
return "creation time {} is later than limit {}".format(created_at, time_limit)
for tag in toot.get("tags", []):
tag_name = tag.get("name").lower()
if tag_name and tag_name in protected_tags:
return "{} is a protected tag".format(tag_name)
if created_at >= time_limit:
return "creation time {} is later than limit {}".format(created_at, time_limit)
return None