From 514057aa3e3323a7bd5a16df0787a6c10db4bb80 Mon Sep 17 00:00:00 2001 From: MagicalCodeMonkey Date: Mon, 13 Apr 2020 23:23:50 -0400 Subject: [PATCH] Remove path check and force sign in if the user isn't logged in --- src/App.vue | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/App.vue b/src/App.vue index f8ccc82c..cfe02f4d 100644 --- a/src/App.vue +++ b/src/App.vue @@ -354,9 +354,7 @@ export default { this.$store.dispatch('PLAYBACK_CHANGE', data); }); if (!window.localStorage.getItem('plexuser')) { - if (this.$route.fullPath.indexOf('join') === -1) { - this.$router.push('/signin'); - } + this.$router.push('/signin'); this.loading = false; return; }