Don't peek group calls if feature flag is disabled
This commit is contained in:
@@ -2655,9 +2655,11 @@ type WhatIsThis = import('./window.d').WhatIsThis;
|
|||||||
|
|
||||||
if (data.message.groupCallUpdate) {
|
if (data.message.groupCallUpdate) {
|
||||||
if (data.message.groupV2 && messageDescriptor.type === Message.GROUP) {
|
if (data.message.groupV2 && messageDescriptor.type === Message.GROUP) {
|
||||||
window.reduxActions.calling.peekNotConnectedGroupCall({
|
if (window.GROUP_CALLING) {
|
||||||
conversationId: messageDescriptor.id,
|
window.reduxActions.calling.peekNotConnectedGroupCall({
|
||||||
});
|
conversationId: messageDescriptor.id,
|
||||||
|
});
|
||||||
|
}
|
||||||
return Promise.resolve();
|
return Promise.resolve();
|
||||||
}
|
}
|
||||||
window.log.warn(
|
window.log.warn(
|
||||||
|
Reference in New Issue
Block a user