fix(reactions) Remove vpaas check for reactions webhook (#10089)
Reactions will be sent if webhookProxyUrl is set in config.js
This commit is contained in:
parent
31ce7e010d
commit
3aec980378
|
@ -8,7 +8,6 @@ import { MiddlewareRegistry } from '../base/redux';
|
||||||
import { updateSettings } from '../base/settings';
|
import { updateSettings } from '../base/settings';
|
||||||
import { playSound, registerSound, unregisterSound } from '../base/sounds';
|
import { playSound, registerSound, unregisterSound } from '../base/sounds';
|
||||||
import { getDisabledSounds } from '../base/sounds/functions.any';
|
import { getDisabledSounds } from '../base/sounds/functions.any';
|
||||||
import { isVpaasMeeting } from '../jaas/functions';
|
|
||||||
import { NOTIFICATION_TIMEOUT, showNotification } from '../notifications';
|
import { NOTIFICATION_TIMEOUT, showNotification } from '../notifications';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
|
@ -109,9 +108,7 @@ MiddlewareRegistry.register(store => next => action => {
|
||||||
dispatch(pushReactions(buffer));
|
dispatch(pushReactions(buffer));
|
||||||
});
|
});
|
||||||
|
|
||||||
if (isVpaasMeeting(state)) {
|
|
||||||
sendReactionsWebhook(state, buffer);
|
sendReactionsWebhook(state, buffer);
|
||||||
}
|
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue