From e3e4bfc8bd0fd7cde904a6be9543f70471fa872b Mon Sep 17 00:00:00 2001 From: Janis Hutz Date: Wed, 14 Aug 2024 15:09:01 +0200 Subject: [PATCH] small fixes --- MusicPlayerV2-GUI/src/views/AppView.vue | 3 ++- MusicPlayerV2-GUI/src/views/GetView.vue | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/MusicPlayerV2-GUI/src/views/AppView.vue b/MusicPlayerV2-GUI/src/views/AppView.vue index ff26802..556126a 100644 --- a/MusicPlayerV2-GUI/src/views/AppView.vue +++ b/MusicPlayerV2-GUI/src/views/AppView.vue @@ -100,7 +100,8 @@ } ); const logout = () => { - location.href = localStorage.getItem( 'url' ) + '/logout?return=' + location.href; + // location.href = 'http://localhost:8080/logout?return=' + location.href; + location.href = 'https://id.janishutz.com/logout?return=' + location.href; } diff --git a/MusicPlayerV2-GUI/src/views/GetView.vue b/MusicPlayerV2-GUI/src/views/GetView.vue index 271caae..c80740a 100644 --- a/MusicPlayerV2-GUI/src/views/GetView.vue +++ b/MusicPlayerV2-GUI/src/views/GetView.vue @@ -42,7 +42,8 @@ sessionStorage.removeItem( 'getRedirectionReason' ); const logout = () => { - location.href = localStorage.getItem( 'url' ) + '/logout?return=' + location.href; + // location.href = 'http://localhost:8080/logout?return=' + location.href; + location.href = 'https://id.janishutz.com/logout?return=' + location.href; }