Skip to content

Commit

Permalink
fix stream status after adding external input success (#852)
Browse files Browse the repository at this point in the history
Stream status was not set to PUBLISHER_READY causing erizo controller
not include the stream on stream list after room connection success.
  • Loading branch information
zevarito authored and lodoyun committed Apr 18, 2017
1 parent 7e07cf3 commit c0edb59
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions erizo_controller/erizoController/erizoController.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit c0edb59

Please sign in to comment.