From bee365364be4e7745db30ff64daad33c62721df1 Mon Sep 17 00:00:00 2001 From: Carlos Arriaga Prieto <47325335+Arri98@users.noreply.github.com> Date: Mon, 17 Jan 2022 14:41:51 +0100 Subject: [PATCH] Fix to recording (#1786) Co-authored-by: carlos --- erizo_controller/erizoJS/models/Publisher.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erizo_controller/erizoJS/models/Publisher.js b/erizo_controller/erizoJS/models/Publisher.js index 6fa5f6c8a..810cea6aa 100644 --- a/erizo_controller/erizoJS/models/Publisher.js +++ b/erizo_controller/erizoJS/models/Publisher.js @@ -392,7 +392,7 @@ class Source extends NodeClass { class Publisher extends Source { constructor(clientId, streamId, connection, options) { - super(clientId, streamId, connection.threadPool, options); + super(clientId, streamId, connection.internalConnection.threadPool, options); this.mediaConfiguration = options.mediaConfiguration; this.options = options; this.connection = connection;