Do not check instance's actor.type in case of Pleroma/Akkoma

This commit is contained in:
Dmytro Poltavchenko 2023-01-08 00:23:36 +00:00
parent f4698aa4dc
commit 006efc1ba4

View file

@ -11,12 +11,12 @@ cache = LRUCache(1024)
def person_check(actor, software): def person_check(actor, software):
## pleroma and akkoma use Person for the actor type for some reason ## pleroma and akkoma may use Person for the actor type for some reason
if software in {'akkoma', 'pleroma'} and actor.id != f'https://{actor.domain}/relay': if software in {'akkoma', 'pleroma'} and actor.id == f'https://{actor.domain}/relay':
return True return False
## make sure the actor is an application ## make sure the actor is an application
elif actor.type != 'Application': if actor.type != 'Application':
return True return True