1
0
mirror of https://github.com/pierre42100/ComunicWeb synced 2025-03-31 15:12:38 +00:00

Can get older messages

This commit is contained in:
Pierre HUBERT 2021-03-06 14:29:15 +01:00
parent 538112d767
commit 3d503e1560
2 changed files with 2 additions and 2 deletions
assets/js/components/conversations

@ -1203,7 +1203,7 @@ const ConvChatWindow = {
}
//Save the ID of the oldest message
ComunicWeb.components.conversations.service.setOldestMessageID(conversationID, result[0].ID);
ConvService.setOldestMessageID(conversationID, result[0].id);
//Display the list of messages
ComunicWeb.components.conversations.chatWindows.addOldMessages(conversationID, result);

@ -46,7 +46,7 @@ const ConvService = {
//Register conversation locally
this.__serviceCache['conversation-' + conversationID] = {
conversationID: conversationID,
first_message_id: list.length == 0 ? 0 : list[0].ID,
first_message_id: list.length == 0 ? 0 : list[0].id,
};
// Register conversation remotly