1
0
mirror of https://github.com/pierre42100/ComunicWeb synced 2025-04-01 23:52:38 +00:00

Improve the way calls are automatically reopened

This commit is contained in:
Pierre HUBERT 2020-04-11 08:17:51 +02:00
parent e46f8a36a7
commit 5598efa99c

@ -99,8 +99,9 @@ document.addEventListener("wsClosed", () => {
}) })
document.addEventListener("wsOpen", () => { document.addEventListener("openPage", () => {
CallsController.GetListLocalStorage().forEach(async c => { CallsController.GetListLocalStorage().forEach(async c => {
if(!OpenConversations.has(c))
CallsController.Open(await getSingleConversation(c)) CallsController.Open(await getSingleConversation(c))
}) })
}) })