From f2cf107c70f1cf004429cc21d50317d599d1da16 Mon Sep 17 00:00:00 2001 From: Alvaro Gil Date: Tue, 18 Apr 2017 11:49:55 -0300 Subject: [PATCH] fix stream status after adding external input success (#852) Stream status was not set to PUBLISHER_READY causing erizo controller not include the stream on stream list after room connection success. --- erizo_controller/erizoController/erizoController.js | 1 + 1 file changed, 1 insertion(+) diff --git a/erizo_controller/erizoController/erizoController.js b/erizo_controller/erizoController/erizoController.js index 0523fee0ae..04fad8c26c 100644 --- a/erizo_controller/erizoController/erizoController.js +++ b/erizo_controller/erizoController/erizoController.js @@ -540,6 +540,7 @@ var listen = function () { video: options.video, data: options.data, attributes: options.attributes}); + st.status = PUBLISHER_READY; socket.streams.push(id); socket.room.streams[id] = st; callback(id);