Przeglądaj źródła

Fixes hangup when callstats is disabled.

master
damencho 8 lat temu
rodzic
commit
07f111abbd
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1
    1
      modules/UI/UI.js

+ 1
- 1
modules/UI/UI.js Wyświetl plik

@@ -1102,7 +1102,7 @@ UI.requestFeedback = function () {
1102 1102
     if (Feedback.isVisible())
1103 1103
         return Promise.reject(UIErrors.FEEDBACK_REQUEST_IN_PROGRESS);
1104 1104
     // Feedback has been submitted already.
1105
-    else if (Feedback.isSubmitted())
1105
+    else if (Feedback.isEnabled() && Feedback.isSubmitted())
1106 1106
         return Promise.resolve();
1107 1107
     else
1108 1108
         return new Promise(function (resolve, reject) {

Ładowanie…
Anuluj
Zapisz