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

View File

@ -1203,7 +1203,7 @@ const ConvChatWindow = {
} }
//Save the ID of the oldest message //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 //Display the list of messages
ComunicWeb.components.conversations.chatWindows.addOldMessages(conversationID, result); ComunicWeb.components.conversations.chatWindows.addOldMessages(conversationID, result);

View File

@ -46,7 +46,7 @@ const ConvService = {
//Register conversation locally //Register conversation locally
this.__serviceCache['conversation-' + conversationID] = { this.__serviceCache['conversation-' + conversationID] = {
conversationID: 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 // Register conversation remotly