From 876c79908e07104fa7e60167260ee207595e3194 Mon Sep 17 00:00:00 2001 From: Gauthier Roebroeck Date: Tue, 10 Dec 2019 18:19:38 +0800 Subject: [PATCH] reloading now return to the correct page instead of home --- komga-webui/src/views/Startup.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/komga-webui/src/views/Startup.vue b/komga-webui/src/views/Startup.vue index 9d328591..9b4d03b9 100644 --- a/komga-webui/src/views/Startup.vue +++ b/komga-webui/src/views/Startup.vue @@ -17,7 +17,7 @@ export default Vue.extend({ try { await this.$store.dispatch('getMe') await this.$store.dispatch('getLibraries') - this.$router.push({ name: 'home' }) + this.$router.back() } catch (e) { this.$router.push({ name: 'login' }) }