enhance(client): Improve stability of version comparison
This commit is contained in:
parent
cced83024b
commit
6c1f03eefd
|
@ -207,9 +207,12 @@ if (lastVersion !== version) {
|
||||||
// テーマリビルドするため
|
// テーマリビルドするため
|
||||||
localStorage.removeItem('theme');
|
localStorage.removeItem('theme');
|
||||||
|
|
||||||
|
try { // 変なバージョン文字列来るとcompareVersionsでエラーになるため
|
||||||
if (lastVersion != null && compareVersions(version, lastVersion) === 1) {
|
if (lastVersion != null && compareVersions(version, lastVersion) === 1) {
|
||||||
popup(import('@client/components/updated.vue'), {}, {}, 'closed');
|
popup(import('@client/components/updated.vue'), {}, {}, 'closed');
|
||||||
}
|
}
|
||||||
|
} catch (e) {
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// NOTE: この処理は必ず↑のクライアント更新時処理より後に来ること(テーマ再構築のため)
|
// NOTE: この処理は必ず↑のクライアント更新時処理より後に来ること(テーマ再構築のため)
|
||||||
|
|
Loading…
Reference in New Issue