fix(notifications) Adjust the timeout for unmute blocked notifications.

pull/10575/head jitsi-meet_6716
Jaya Allamsetty 4 years ago committed by Дамян Минков
parent a23d57b5ff
commit 9528cbad0e
  1. 4
      react/features/base/media/middleware.js

@ -94,7 +94,7 @@ MiddlewareRegistry.register(store => next => action => {
store.dispatch(showWarningNotification({
descriptionKey: 'notify.audioUnmuteBlockedDescription',
titleKey: 'notify.audioUnmuteBlockedTitle'
}, NOTIFICATION_TIMEOUT_TYPE.LONG));
}, NOTIFICATION_TIMEOUT_TYPE.MEDIUM));
}
break;
}
@ -119,7 +119,7 @@ MiddlewareRegistry.register(store => next => action => {
store.dispatch(showWarningNotification({
descriptionKey: 'notify.videoUnmuteBlockedDescription',
titleKey: 'notify.videoUnmuteBlockedTitle'
}, NOTIFICATION_TIMEOUT_TYPE.LONG));
}, NOTIFICATION_TIMEOUT_TYPE.MEDIUM));
}
break;
}

Loading…
Cancel
Save