feat/temp store follow request
This commit is contained in:
parent
5f76f7894c
commit
e480f77172
1 changed files with 3 additions and 2 deletions
|
@ -60,8 +60,9 @@ async def process_incoming(
|
|||
actor = await fetch_actor(ap_object["actor"], db_session)
|
||||
|
||||
if "Follow" == ap_object["type"]:
|
||||
await _handle_follow(db_session, actor.ap_actor["inbox"], ap_object)
|
||||
if await _handle_follow(db_session, actor.ap_actor["inbox"], ap_object):
|
||||
return True
|
||||
return False
|
||||
|
||||
return False
|
||||
|
||||
|
|
Loading…
Reference in a new issue