Place object property retrieval inside try-catch

This commit is contained in:
Kevin Serrano 2017-09-07 12:17:36 -07:00
parent f0ab4ce52d
commit 69c7fe24b3
No known key found for this signature in database
GPG Key ID: BF999DEFC7371BA1
1 changed files with 3 additions and 2 deletions

View File

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