|
@@ -4,6 +4,7 @@ import { CONFERENCE_FAILED } from '../base/conference';
|
4
|
4
|
import { NOTIFY_CAMERA_ERROR, NOTIFY_MIC_ERROR } from '../base/devices';
|
5
|
5
|
import { JitsiConferenceErrors } from '../base/lib-jitsi-meet';
|
6
|
6
|
import { MiddlewareRegistry } from '../base/redux';
|
|
7
|
+import { SUBMIT_FEEDBACK } from '../feedback';
|
7
|
8
|
|
8
|
9
|
declare var APP: Object;
|
9
|
10
|
|
|
@@ -34,6 +35,10 @@ MiddlewareRegistry.register((/* store */) => next => action => {
|
34
|
35
|
APP.API.notifyOnMicError(action.error.name, action.error.message);
|
35
|
36
|
}
|
36
|
37
|
break;
|
|
38
|
+
|
|
39
|
+ case SUBMIT_FEEDBACK:
|
|
40
|
+ APP.API.notifyFeedbackSubmitted();
|
|
41
|
+ break;
|
37
|
42
|
}
|
38
|
43
|
|
39
|
44
|
return next(action);
|