This commit is contained in:
花裤衩 2020-12-05 03:55:40 -08:00 committed by GitHub
commit 707ae9c711
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -51,14 +51,14 @@ const actions = {
const { data } = response const { data } = response
if (!data) { if (!data) {
reject('Verification failed, please Login again.') return reject('Verification failed, please Login again.')
} }
const { roles, name, avatar, introduction } = data const { roles, name, avatar, introduction } = data
// roles must be a non-empty array // roles must be a non-empty array
if (!roles || roles.length <= 0) { if (!roles || roles.length <= 0) {
reject('getInfo: roles must be a non-null array!') return reject('getInfo: roles must be a non-null array!')
} }
commit('SET_ROLES', roles) commit('SET_ROLES', roles)