This commit is contained in:
Timothy J. Baek
2024-08-04 17:35:26 +02:00
parent e5dd7e65d4
commit 209ccdf668
2 changed files with 1 additions and 3 deletions

View File

@@ -46,7 +46,7 @@ async def get_session_user_chat_list(
user=Depends(get_verified_user), page: Optional[int] = None
):
if page is not None:
limit = 20
limit = 60
skip = (page - 1) * limit
return Chats.get_chat_title_id_list_by_user_id(user.id, skip=skip, limit=limit)