Fix bad refresh

This commit is contained in:
Pierre HUBERT 2021-03-06 17:58:20 +01:00
parent d33484a476
commit cbfad9ad87

View File

@ -270,7 +270,7 @@ const ConvChatWindow = {
* @param {Object} conversationWindow Informations about the conversation window * @param {Object} conversationWindow Informations about the conversation window
* @return {Boolean} True for a success * @return {Boolean} True for a success
*/ */
load: async function(conversationID, conversationWindow) { load: async function(conversationID, conversationWindow, forceRefresh) {
try { try {
@ -284,7 +284,7 @@ const ConvChatWindow = {
rej(info) rej(info)
else else
res(info) res(info)
}); }, forceRefresh);
}) })
const users = await getUsers(conv.members.map(m => m.user_id)); const users = await getUsers(conv.members.map(m => m.user_id));
@ -730,7 +730,7 @@ const ConvChatWindow = {
*/ */
reload: function(conversation) { reload: function(conversation) {
ConvChatWindow.unload(conversation.infos.id, true); ConvChatWindow.unload(conversation.infos.id, true);
ConvChatWindow.load(conversation.infos.id, conversation.box); ConvChatWindow.load(conversation.infos.id, conversation.box, true);
}, },
/** /**