mirror of
https://github.com/pierre42100/ComunicWeb
synced 2025-06-19 04:15:17 +00:00
Returns the message
This commit is contained in:
@ -6,7 +6,7 @@
|
||||
* @author Pierre HUBERT
|
||||
*/
|
||||
|
||||
ComunicWeb.components.conversations.service = {
|
||||
const ConvService = {
|
||||
|
||||
/**
|
||||
* @var {Object} __serviceCache The service cache
|
||||
@ -130,6 +130,15 @@ ComunicWeb.components.conversations.service = {
|
||||
},
|
||||
}
|
||||
|
||||
ComunicWeb.components.conversations.service = ConvService;
|
||||
|
||||
//Register service cache
|
||||
ComunicWeb.common.cacheManager.registerCacheCleaner("ComunicWeb.components.conversations.service.emptyCache");
|
||||
|
||||
// Register to new messages
|
||||
document.addEventListener("newConvMessage", (e) => {
|
||||
const msg = e.detail;
|
||||
|
||||
if(ConvService.__serviceCache.hasOwnProperty("conversation-" + msg.convID))
|
||||
ComunicWeb.components.conversations.chatWindows.addMessage(msg.convID, msg);
|
||||
})
|
Reference in New Issue
Block a user