diff --git a/services/core.py b/services/core.py index 2379e05..0b1babc 100644 --- a/services/core.py +++ b/services/core.py @@ -37,6 +37,9 @@ async def get_all_authors() -> List[ChatMember]: authors = await _request_endpoint(query_name, gql) for a in authors: + if a["user"] in authors_by_user: + print("DOUBLE DOUBLE") + print(a) authors_by_user[a["user"]] = a authors_by_id[a["id"]] = a