mirror of
https://github.com/VueTubeApp/VueTube
synced 2025-01-05 07:01:14 +00:00
fix: 🐛 Fix theming not appearing in update screen
This commit is contained in:
parent
619c4168be
commit
47eb857ecc
1 changed files with 6 additions and 3 deletions
|
@ -21,14 +21,17 @@ export default {
|
|||
progressMsg: "...",
|
||||
}),
|
||||
async mounted() {
|
||||
//--- Update Screen ---//
|
||||
if (localStorage.getItem("lastRunVersion") != process.env.appVersion ) return this.$router.replace('/activities/update');
|
||||
|
||||
//--- Init Stuff ---//
|
||||
this.progressMsg = this.$lang("index").connecting;
|
||||
this.$store.commit("tweaks/initTweaks");
|
||||
|
||||
//--- Load Theming ---//
|
||||
await this.theming();
|
||||
|
||||
//--- Update Screen ---//
|
||||
if (localStorage.getItem("lastRunVersion") != process.env.appVersion ) return this.$router.replace('/activities/update');
|
||||
|
||||
//--- Start Innertube Connection ---//
|
||||
await this.$youtube.getAPI();
|
||||
await this.$vuetube.launchBackHandling();
|
||||
this.progressMsg = this.$lang("index").launching;
|
||||
|
|
Loading…
Reference in a new issue