diff --git a/fetch_posts.py b/fetch_posts.py index f41dbae..8c9b1b2 100755 --- a/fetch_posts.py +++ b/fetch_posts.py @@ -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=All) + async with self._http.get(outbox_url) as resp: outbox = await resp.json(content_type=None) assert outbox['type'] == 'OrderedCollection' return outbox