diff --git a/find_posts.py b/find_posts.py index 6c76128..8b64723 100644 --- a/find_posts.py +++ b/find_posts.py @@ -1189,11 +1189,14 @@ def get_server_info(server, seen_hosts): def set_server_apis(server): # support for new server software should be added here software_apis = { - 'mastodonApiSupport': ['mastodon', 'pleroma', 'akkoma', 'pixelfed', 'gotosocial', 'hometown'], + 'mastodonApiSupport': ['mastodon', 'pleroma', 'akkoma', 'pixelfed', 'hometown'], 'misskeyApiSupport': ['misskey', 'calckey', 'firefish', 'foundkey'], 'lemmyApiSupport': ['lemmy'] } + # software that has specific API support but is not compatible with FediFetcher for various reasons: + # * gotosocial - All Mastodon APIs require access token (https://github.com/superseriousbusiness/gotosocial/issues/2038) + for api, softwareList in software_apis.items(): server[api] = server['software'] in softwareList