0
0
Fork 0
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:
Kenny 2022-06-20 10:15:41 -04:00
parent 619c4168be
commit 47eb857ecc

View file

@ -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;