1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Improvement

This commit is contained in:
Thomas Huang 2019-02-28 13:58:37 -06:00
parent 973042bafa
commit 5a8221253e

View File

@ -448,7 +448,7 @@ function setupController (initState, initLangCode) {
function triggerUi () {
extension.tabs.query({ active: true }, tabs => {
const currentlyActiveMetamaskTab = Boolean(tabs.find(tab => openMetamaskTabsIDs[tab.id]))
if (!popupIsOpen || notificationIsOpen || currentlyActiveMetamaskTab) {
if ((!popupIsOpen || notificationIsOpen) && !currentlyActiveMetamaskTab) {
notificationManager.showPopup()
notificationIsOpen = true
}