添加Google

This commit is contained in:
sijinhui
2024-01-15 23:36:27 +08:00
parent 1e7d20580d
commit 5b83a42231
3 changed files with 6 additions and 4 deletions

View File

@@ -137,7 +137,7 @@ export const useAppConfig = createPersistStore(
}),
{
name: StoreKey.Config,
version: 3.891,
version: 3.892,
migrate(persistedState, version) {
const state = persistedState as ChatConfig;
@@ -168,7 +168,7 @@ export const useAppConfig = createPersistStore(
if (version < 3.8) {
state.lastUpdate = Date.now();
}
if (version < 3.891) {
if (version < 3.892) {
state.lastUpdate = Date.now();
return { ...DEFAULT_CONFIG };
}