This commit is contained in:
syuilo 2020-02-13 11:44:58 +09:00
parent 1cd3419688
commit c228155514
3 changed files with 15 additions and 0 deletions

View file

@ -1,6 +1,11 @@
ChangeLog
=========
unreleased
-------------------
### 🐛Fixes
* グループがない状態でグループチャットを開始しようとするとフリーズする問題を修正
12.8.0 (2020/02/13)
--------------------
### ✨Improvements

View file

@ -389,6 +389,8 @@ uiLanguage: "UIの表示言語"
groupInvited: "グループに招待されました"
aboutX: "{x}について"
useOsNativeEmojis: "OSネイティブの絵文字を使用"
noGroups: "グループがありません"
joinOrCreateGroup: "既存のグループに招待してもらうか、新しくグループを作成してください。"
_ago:
unknown: "謎"

View file

@ -139,6 +139,14 @@ export default Vue.extend({
async startGroup() {
const groups1 = await this.$root.api('users/groups/owned');
const groups2 = await this.$root.api('users/groups/joined');
if (groups1.length === 0 && groups2.length === 0) {
this.$root.dialog({
type: 'warning',
title: this.$t('noGroups'),
text: this.$t('joinOrCreateGroup'),
});
return;
}
const { canceled, result: group } = await this.$root.dialog({
type: null,
title: this.$t('group'),