update err output

This commit is contained in:
fly_mc 2024-10-10 01:04:17 +08:00
parent 2668f800b3
commit 2c44470c58

View file

@ -75,7 +75,9 @@ export async function common(createVue: () => App<Element>) {
if (lastVersion != null && compareVersions(version, lastVersion) === 1) {
isClientUpdated = true;
}
} catch (err) { /* empty */ }
} catch (err) {
console.error('Error comparing versions:', err);
}
}
//#endregion