None-fix
This commit is contained in:
parent
975be32af1
commit
89736e4f45
|
@ -45,7 +45,7 @@ async def load_messages(chat_id: str, limit: int = 5, offset: int = 0, ids=None)
|
||||||
async def load_chats(_, info, limit: int = 50, offset: int = 0):
|
async def load_chats(_, info, limit: int = 50, offset: int = 0):
|
||||||
"""load :limit chats of current user with :offset"""
|
"""load :limit chats of current user with :offset"""
|
||||||
author_id = info.context["author_id"]
|
author_id = info.context["author_id"]
|
||||||
cids = (list(await redis.execute("SMEMBERS", f"chats_by_author/{author_id}")) or []
|
cids = (list(await redis.execute("SMEMBERS", f"chats_by_author/{author_id}") or [])
|
||||||
)[offset:(offset + limit)]
|
)[offset:(offset + limit)]
|
||||||
members_online = (await redis.execute("SMEMBERS", "authors-online")) or []
|
members_online = (await redis.execute("SMEMBERS", "authors-online")) or []
|
||||||
chats = []
|
chats = []
|
||||||
|
|
Loading…
Reference in New Issue
Block a user