aboutsummaryrefslogtreecommitdiff
path: root/src/components/oauth_callback/oauth_callback.js
diff options
context:
space:
mode:
authorRoger Braun <roger@rogerbraun.net>2018-10-26 15:20:39 +0200
committerRoger Braun <roger@rogerbraun.net>2018-10-26 15:20:39 +0200
commit60b3e4f40f122f2dfea3f4fc0360673169cd6f99 (patch)
treef41e05756acffa7061b6cf62e62323ca1fea9e64 /src/components/oauth_callback/oauth_callback.js
parent9af204b293a9c1b15e472423a4badff505fd662a (diff)
Fix linting.
Diffstat (limited to 'src/components/oauth_callback/oauth_callback.js')
-rw-r--r--src/components/oauth_callback/oauth_callback.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/oauth_callback/oauth_callback.js b/src/components/oauth_callback/oauth_callback.js
index 60a15412..7a5132ad 100644
--- a/src/components/oauth_callback/oauth_callback.js
+++ b/src/components/oauth_callback/oauth_callback.js
@@ -9,8 +9,8 @@ const oac = {
instance: this.$store.state.instance.server,
code: this.code
}).then((result) => {
- this.$store.commit("setToken", result.access_token)
- this.$store.dispatch("loginUser", result.access_token)
+ this.$store.commit('setToken', result.access_token)
+ this.$store.dispatch('loginUser', result.access_token)
this.$router.push('/main/friends')
})
}