From 86af6b2a877fdf08ea597c23f707690a648759e4 Mon Sep 17 00:00:00 2001 From: Cade Ayres Date: Sat, 8 Mar 2025 12:44:49 +0000 Subject: [PATCH] Added dispatch to update API cache in background if cache was already present --- src/components/mixins/SplashMixin.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/components/mixins/SplashMixin.vue b/src/components/mixins/SplashMixin.vue index 691343418..f697d2069 100644 --- a/src/components/mixins/SplashMixin.vue +++ b/src/components/mixins/SplashMixin.vue @@ -49,6 +49,11 @@ export default class SplashMixin extends Vue { } await this.triggerStoreModListUpdate(); + + if (hasPriorCache) { + this.$store.dispatch('tsMods/syncPackageList'); + } + await this.moveToNextScreen(); }