This commit is contained in:
limepot 2024-12-11 15:43:59 -07:00
parent 8b324d23fb
commit 7da4e86e73

View file

@ -202,7 +202,7 @@ class PostFetcher:
else:
outbox_url = profile['outbox']
async with self._http.get(outbox_url) as resp: outbox = await resp.json(content_type='text/html')
async with self._http.get(outbox_url) as resp: outbox = await resp.json(content_type=All)
assert outbox['type'] == 'OrderedCollection'
return outbox