From c16f2d6bc60a240c31e3385e71a442a117aa43d7 Mon Sep 17 00:00:00 2001 From: nelle Date: Wed, 11 Dec 2024 15:51:52 -0700 Subject: [PATCH] it is now not giving a shit --- fetch_posts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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