Skip to content
Snippets Groups Projects
Commit fbbce302 authored by syuilo's avatar syuilo
Browse files

enhance(client): 非ログイン自は更新ダイアログを出さないように

Resolve #7756
parent 4b9c6054
No related branches found
No related tags found
No related merge requests found
...@@ -20,6 +20,7 @@ ...@@ -20,6 +20,7 @@
- リスト、アンテナタイムラインを個別ページとして分割 - リスト、アンテナタイムラインを個別ページとして分割
- UIの改善 - UIの改善
- MFMにsparklesエフェクトを追加 - MFMにsparklesエフェクトを追加
- 非ログイン自は更新ダイアログを出さないように
### Bugfixes ### Bugfixes
- アカウントデータのエクスポート/インポート処理ができない問題を修正 - アカウントデータのエクスポート/インポート処理ができない問題を修正
......
...@@ -217,7 +217,10 @@ if (lastVersion !== version) { ...@@ -217,7 +217,10 @@ if (lastVersion !== version) {
try { // 変なバージョン文字列来るとcompareVersionsでエラーになるため try { // 変なバージョン文字列来るとcompareVersionsでエラーになるため
if (lastVersion != null && compareVersions(version, lastVersion) === 1) { if (lastVersion != null && compareVersions(version, lastVersion) === 1) {
popup(import('@client/components/updated.vue'), {}, {}, 'closed'); // ログインしてる場合だけ
if ($i) {
popup(import('@client/components/updated.vue'), {}, {}, 'closed');
}
} }
} catch (e) { } catch (e) {
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment