|
@@ -312,7 +312,7 @@ def get_conversation_list():
|
|
|
if not staff_id or not user_id:
|
|
|
return wrap_response(404, msg="staff_id and user_id are required")
|
|
|
|
|
|
- page = request.args.get("page")
|
|
|
+ page = request.args.get("page_id")
|
|
|
response = app.session_manager.get_conversation_list(staff_id, user_id, page, const.DEFAULT_CONVERSATION_SIZE)
|
|
|
return wrap_response(200, data=response)
|
|
|
|