Skip to content
This repository has been archived by the owner on Oct 31, 2022. It is now read-only.

Commit

Permalink
fix: 🐛 Fix theming not appearing in update screen
Browse files Browse the repository at this point in the history
  • Loading branch information
Frontesque committed Jun 20, 2022
1 parent 619c416 commit 47eb857
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions NUXT/pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 47eb857

Please sign in to comment.