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

Resolve #7756
This commit is contained in:
syuilo 2021-09-22 22:18:08 +09:00
parent 4b9c605477
commit fbbce302bc
2 changed files with 5 additions and 1 deletions

View file

@ -20,6 +20,7 @@
- リスト、アンテナタイムラインを個別ページとして分割
- UIの改善
- MFMにsparklesエフェクトを追加
- 非ログイン自は更新ダイアログを出さないように
### Bugfixes
- アカウントデータのエクスポート/インポート処理ができない問題を修正

View file

@ -217,7 +217,10 @@ if (lastVersion !== version) {
try { // 変なバージョン文字列来るとcompareVersionsでエラーになるため
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) {
}