Commit 6a55139c authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Fix typo in ondowntrack callback.

Fortunately we're not using the mistyped arguments.
parent 45ae8c53
...@@ -435,7 +435,7 @@ function gotDownStream(c) { ...@@ -435,7 +435,7 @@ function gotDownStream(c) {
console.error(e); console.error(e);
displayError(e); displayError(e);
}; };
c.ondowntrack = function(track, transceiver, label, stream) { c.ondowntrack = function(track, transceiver, stream) {
setMedia(c); setMedia(c);
}; };
c.onnegotiationcompleted = function() { c.onnegotiationcompleted = function() {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment