forked from AkkomaGang/akkoma-fe
Add await to login action'
This commit is contained in:
parent
987b5162a7
commit
2d05aef24b
2 changed files with 1 additions and 4 deletions
|
@ -241,7 +241,7 @@ const afterStoreSetup = async ({ store, i18n }) => {
|
|||
|
||||
// Now we have the server settings and can try logging in
|
||||
if (store.state.oauth.token) {
|
||||
store.dispatch('loginUser', store.state.oauth.token)
|
||||
await store.dispatch('loginUser', store.state.oauth.token)
|
||||
}
|
||||
|
||||
const router = new VueRouter({
|
||||
|
|
|
@ -60,9 +60,6 @@ export default function createPersistedState ({
|
|||
merge({}, store.state, savedState)
|
||||
)
|
||||
}
|
||||
if (store.state.oauth.token) {
|
||||
store.dispatch('loginUser', store.state.oauth.token)
|
||||
}
|
||||
loaded = true
|
||||
} catch (e) {
|
||||
console.log("Couldn't load state")
|
||||
|
|
Loading…
Reference in a new issue