From e211c04fd9495417eebf3b12d7711a1f58212577 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antti=20M=C3=A4ki?= Date: Thu, 16 Jan 2025 10:46:45 +0200 Subject: [PATCH] Reset cache update date shown on UI when the cache is purged --- src/store/modules/TsModsModule.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/store/modules/TsModsModule.ts b/src/store/modules/TsModsModule.ts index 9318512e7..42018c5ea 100644 --- a/src/store/modules/TsModsModule.ts +++ b/src/store/modules/TsModsModule.ts @@ -324,6 +324,7 @@ export const TsModsModule = { try { commit('setThunderstoreModListUpdateStatus', 'Resetting mod list cache...'); await PackageDb.resetCommunity(community); + commit('setModsLastUpdated', undefined); } finally { commit('finishThunderstoreModListUpdate'); }