diff --git a/modules/e2ee/Context.js b/modules/e2ee/Context.js index c221b836b2..fd03937d2b 100644 --- a/modules/e2ee/Context.js +++ b/modules/e2ee/Context.js @@ -189,7 +189,9 @@ export class Context { encodedFrame, keyIndex); - return controller.enqueue(decodedFrame); + if (decodedFrame) { + controller.enqueue(decodedFrame); + } } }