mirror of
https://github.com/VueTubeApp/VueTube
synced 2024-11-25 12:45:17 +00:00
fix: 🚑 Fix app launcher
fix app not launching if the user didn't define a startup page
This commit is contained in:
parent
c9275571c5
commit
ae630678a9
1 changed files with 1 additions and 1 deletions
|
@ -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) =>
|
||||
|
|
Loading…
Reference in a new issue