From c732d475f19c52cdb94063dd0d3e191cff773418 Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Wed, 23 Oct 2019 20:20:54 -0400 Subject: [PATCH] [O] Log when cookies doesn't exist --- src/components/login/login.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/login/login.ts b/src/components/login/login.ts index fb70275..d63b44f 100644 --- a/src/components/login/login.ts +++ b/src/components/login/login.ts @@ -39,6 +39,10 @@ export default class Login extends Vue // Already contains valid token / TODO: Validate this.$emit('login:token', this.$cookies.get('va.token')); } + else + { + console.log('Cookies doesn\'t exist'); + } } /**