Skip to content

Commit 8a370ba

Browse files
committed
fix conversations endpoint error
Signed-off-by: Stephanie <[email protected]>
1 parent 2ba31bd commit 8a370ba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/endpoints/conversations.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ async def get_conversations_list_endpoint_handler(
160160
"""Handle request to retrieve all conversations for the authenticated user."""
161161
check_configuration_loaded(configuration)
162162

163-
user_id, _, _ = auth
163+
user_id, _, _, _ = auth
164164

165165
logger.info("Retrieving conversations for user %s", user_id)
166166

@@ -249,7 +249,7 @@ async def get_conversation_endpoint_handler(
249249
},
250250
)
251251

252-
user_id, _, _ = auth
252+
user_id, _, _, _ = auth
253253

254254
user_conversation = validate_conversation_ownership(
255255
user_id=user_id,

0 commit comments

Comments
 (0)