mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-22 12:09:21 +00:00
Fix bad refresh
This commit is contained in:
parent
d33484a476
commit
cbfad9ad87
@ -270,7 +270,7 @@ const ConvChatWindow = {
|
||||
* @param {Object} conversationWindow Informations about the conversation window
|
||||
* @return {Boolean} True for a success
|
||||
*/
|
||||
load: async function(conversationID, conversationWindow) {
|
||||
load: async function(conversationID, conversationWindow, forceRefresh) {
|
||||
|
||||
try {
|
||||
|
||||
@ -284,7 +284,7 @@ const ConvChatWindow = {
|
||||
rej(info)
|
||||
else
|
||||
res(info)
|
||||
});
|
||||
}, forceRefresh);
|
||||
})
|
||||
|
||||
const users = await getUsers(conv.members.map(m => m.user_id));
|
||||
@ -730,7 +730,7 @@ const ConvChatWindow = {
|
||||
*/
|
||||
reload: function(conversation) {
|
||||
ConvChatWindow.unload(conversation.infos.id, true);
|
||||
ConvChatWindow.load(conversation.infos.id, conversation.box);
|
||||
ConvChatWindow.load(conversation.infos.id, conversation.box, true);
|
||||
},
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user