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

Fix #5930

parent 1cd34196
No related branches found
No related tags found
No related merge requests found
ChangeLog
=========
unreleased
-------------------
### 🐛Fixes
* グループがない状態でグループチャットを開始しようとするとフリーズする問題を修正
12.8.0 (2020/02/13)
--------------------
### ✨Improvements
......
......@@ -389,6 +389,8 @@ uiLanguage: "UIの表示言語"
groupInvited: "グループに招待されました"
aboutX: "{x}について"
useOsNativeEmojis: "OSネイティブの絵文字を使用"
noGroups: "グループがありません"
joinOrCreateGroup: "既存のグループに招待してもらうか、新しくグループを作成してください。"
_ago:
unknown: "謎"
......
......@@ -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'),
......
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