From fd82735b3dd36c6251bd6381ff0da4514c1c2323 Mon Sep 17 00:00:00 2001 From: jb-alvarado Date: Wed, 29 Apr 2020 21:29:09 +0200 Subject: [PATCH] fix url --- ffplayout/frontend/middleware/auth.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffplayout/frontend/middleware/auth.js b/ffplayout/frontend/middleware/auth.js index a3067e6b..f21efe59 100644 --- a/ffplayout/frontend/middleware/auth.js +++ b/ffplayout/frontend/middleware/auth.js @@ -1,5 +1,5 @@ export default async function ({ store, redirect }) { - await store.dispatch('auth/inspectToken') + await store.dispatch('/auth/inspectToken') if (!store.state.auth.isLogin) { return redirect('/')