relay: status, not status_code

develop
kaniini 2018-11-18 22:09:08 +00:00
parent 69dfb04131
commit 4623aaf5b6
1 changed files with 1 additions and 1 deletions

View File

@ -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]