fetch_posts.py: support Wordpress ActivityPub plugin

This commit is contained in:
Kay Faraday 2022-12-28 23:06:23 +00:00
parent 0ca511e848
commit f58d85635a
1 changed files with 1 additions and 1 deletions

View File

@ -185,7 +185,7 @@ class PostFetcher:
outbox_url = profile['outbox']
async with self._http.get(outbox_url) as resp: outbox = await resp.json()
assert outbox['type'] == 'OrderedCollection'
assert outbox['type'] in {'OrderedCollection', 'OrderedCollectionPage'}
return outbox
async def _finger_actor(self, username, instance):