ソースを参照

feat(API): Add show feedback parameter to hangup

master
Hristo Terezov 6年前
コミット
5fb9422513
1個のファイルの変更2行の追加2行の削除
  1. 2
    2
      modules/API/API.js

+ 2
- 2
modules/API/API.js ファイルの表示

@@ -103,9 +103,9 @@ function initCommands() {
103 103
 
104 104
             APP.store.dispatch(toggleTileView());
105 105
         },
106
-        'video-hangup': () => {
106
+        'video-hangup': (showFeedbackDialog = true) => {
107 107
             sendAnalytics(createApiEvent('video.hangup'));
108
-            APP.conference.hangup(true);
108
+            APP.conference.hangup(showFeedbackDialog);
109 109
         },
110 110
         'email': email => {
111 111
             sendAnalytics(createApiEvent('email.changed'));

読み込み中…
キャンセル
保存