Place object property retrieval inside try-catch

feature/default_network_editable
Kevin Serrano 7 years ago
parent f0ab4ce52d
commit 69c7fe24b3
No known key found for this signature in database
GPG Key ID: BF999DEFC7371BA1
  1. 5
      ui/app/components/account-dropdowns.js

@ -58,7 +58,7 @@ class AccountDropdowns extends Component {
}, },
}, },
), ),
this.indicateIfLoose(keyring.type), this.indicateIfLoose(keyring),
h('span', { h('span', {
style: { style: {
marginLeft: '20px', marginLeft: '20px',
@ -75,8 +75,9 @@ class AccountDropdowns extends Component {
}) })
} }
indicateIfLoose (type) { indicateIfLoose (keyring) {
try { // Sometimes keyrings aren't loaded yet: try { // Sometimes keyrings aren't loaded yet:
const type = keyring.type
const isLoose = type !== 'HD Key Tree' const isLoose = type !== 'HD Key Tree'
return isLoose ? h('.keyring-label', 'LOOSE') : null return isLoose ? h('.keyring-label', 'LOOSE') : null
} catch (e) { return } } catch (e) { return }

Loading…
Cancel
Save