Fix composer not overwritten by restored composer window

This commit is contained in:
Lim Chee Aun 2024-05-23 14:14:23 +08:00
parent 7053fcc96a
commit 96c44ed485

View file

@ -802,7 +802,14 @@ function Compose({
}, },
}; };
window.opener.__COMPOSE__ = passData; // Pass it here instead of `showCompose` due to some weird proxy issue again window.opener.__COMPOSE__ = passData; // Pass it here instead of `showCompose` due to some weird proxy issue again
if (window.opener.__STATES__.showCompose) {
window.opener.__STATES__.showCompose = false;
setTimeout(() => {
window.opener.__STATES__.showCompose = true; window.opener.__STATES__.showCompose = true;
}, 10);
} else {
window.opener.__STATES__.showCompose = true;
}
}, },
}); });
}} }}