mirror of
https://github.com/jech/galene.git
synced 2024-11-22 16:45:58 +01:00
Fix typo in ondowntrack callback.
Fortunately we're not using the mistyped arguments.
This commit is contained in:
parent
45ae8c5339
commit
6a55139c94
1 changed files with 1 additions and 1 deletions
|
@ -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() {
|
||||||
|
|
Loading…
Reference in a new issue