fix: 🚑 Fix app launcher

fix app not launching if the user didn't define a startup page
This commit is contained in:
Kenny 2022-06-15 17:16:23 -04:00
parent c9275571c5
commit ae630678a9
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ export default {
await this.$vuetube.launchBackHandling();
this.progressMsg = this.$lang("index").launching;
this.$router.replace('/'+ localStorage.getItem("startPage") || "home"); // Prevent user from navigating back to the splash screen
this.$router.replace('/'+ (localStorage.getItem("startPage") || "home") ); // Prevent user from navigating back to the splash screen
},
methods: {
theming() { return new Promise((resolve) =>