Ver código fonte

fix message sort (#15231)

tags/1.0.1
Mars 8 meses atrás
pai
commit
126202648f
Nenhuma conta vinculada ao e-mail do autor do commit
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1
    1
      api/controllers/service_api/app/message.py

+ 1
- 1
api/controllers/service_api/app/message.py Ver arquivo

@@ -70,7 +70,7 @@ class MessageListApi(Resource):

try:
return MessageService.pagination_by_first_id(
app_model, end_user, args["conversation_id"], args["first_id"], args["limit"], "desc"
app_model, end_user, args["conversation_id"], args["first_id"], args["limit"]
)
except services.errors.conversation.ConversationNotExistsError:
raise NotFound("Conversation Not Exists.")

Carregando…
Cancelar
Salvar