fix MFA crashing on user-settings page

This commit is contained in:
Henry Jameson 2019-06-16 20:33:40 +03:00
parent 1db3c785d8
commit 06c84a9cf3
2 changed files with 4 additions and 1 deletions

View file

@ -7,6 +7,7 @@ import { mapState } from 'vuex'
const Mfa = {
data: () => ({
settings: { // current settings of MFA
available: false,
enabled: false,
totp: false
},
@ -139,7 +140,9 @@ const Mfa = {
// fetch settings from server
async fetchSettings () {
let result = await this.backendInteractor.fetchSettingsMFA()
if (result.error) return
this.settings = result.settings
this.settings.available = true
return result
}
},