bugfix: show extension window if locked regardless of approval

feature/default_network_editable
bitpshr 6 years ago
parent a34103987a
commit 8c0bc7b3e2
  1. 3
      app/scripts/controllers/provider-approval.js

@ -38,7 +38,8 @@ class ProviderApprovalController extends SafeEventEmitter {
// only handle requestAccounts // only handle requestAccounts
if (req.method !== 'eth_requestAccounts') return next() if (req.method !== 'eth_requestAccounts') return next()
// if already approved or privacy mode disabled, return early // if already approved or privacy mode disabled, return early
if (this.shouldExposeAccounts(origin)) { const isUnlocked = this.keyringController.memStore.getState().isUnlocked
if (this.shouldExposeAccounts(origin) && isUnlocked) {
res.result = [this.preferencesController.getSelectedAddress()] res.result = [this.preferencesController.getSelectedAddress()]
return return
} }

Loading…
Cancel
Save