mirror of
https://git.pleroma.social/pleroma/relay.git
synced 2024-11-10 02:17:59 +00:00
relay: status, not status_code
This commit is contained in:
parent
69dfb04131
commit
4623aaf5b6
|
@ -19,7 +19,7 @@ async def fetch_actor(uri, force=False):
|
|||
try:
|
||||
async with aiohttp.ClientSession(trace_configs=[http_debug()]) as session:
|
||||
async with session.get(uri, headers={'Accept': 'application/activity+json'}) as resp:
|
||||
if resp.status_code != 200:
|
||||
if resp.status != 200:
|
||||
return None
|
||||
ACTORS[uri] = (await resp.json(encoding='utf-8', content_type=None))
|
||||
return ACTORS[uri]
|
||||
|
|
Loading…
Reference in a new issue