diff --git a/src/client/init.ts b/src/client/init.ts index 2feeaf0ce1..1580ef3e08 100644 --- a/src/client/init.ts +++ b/src/client/init.ts @@ -207,8 +207,11 @@ if (lastVersion !== version) { // テーマリビルドするため localStorage.removeItem('theme'); - if (lastVersion != null && compareVersions(version, lastVersion) === 1) { - popup(import('@client/components/updated.vue'), {}, {}, 'closed'); + try { // 変なバージョン文字列来るとcompareVersionsでエラーになるため + if (lastVersion != null && compareVersions(version, lastVersion) === 1) { + popup(import('@client/components/updated.vue'), {}, {}, 'closed'); + } + } catch (e) { } }