fix(reactions) Remove vpaas check for reactions webhook (#10089)

Reactions will be sent if webhookProxyUrl is set in config.js
pull/10098/head jitsi-meet_6422
robertpin 4 years ago committed by GitHub
parent 31ce7e010d
commit 3aec980378
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      react/features/reactions/middleware.js

@ -8,7 +8,6 @@ import { MiddlewareRegistry } from '../base/redux';
import { updateSettings } from '../base/settings';
import { playSound, registerSound, unregisterSound } from '../base/sounds';
import { getDisabledSounds } from '../base/sounds/functions.any';
import { isVpaasMeeting } from '../jaas/functions';
import { NOTIFICATION_TIMEOUT, showNotification } from '../notifications';
import {
@ -109,9 +108,7 @@ MiddlewareRegistry.register(store => next => action => {
dispatch(pushReactions(buffer));
});
if (isVpaasMeeting(state)) {
sendReactionsWebhook(state, buffer);
}
sendReactionsWebhook(state, buffer);
break;
}

Loading…
Cancel
Save