Skip to content

Commit

Permalink
Fix ConnectionQualityLevel Events (#1805)
Browse files Browse the repository at this point in the history
  • Loading branch information
lodoyun authored Mar 8, 2022
1 parent 8c58f8e commit 4bb40ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion erizo_controller/erizoClient/src/Room.js
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ const Room = (altIo, altConnectionHelpers, altConnectionManager, specInput) => {
}
});
remoteStreams.forEach((stream) => {
if (!!stream.failed && stream.pc) {
if (!stream.failed && stream.pc) {
if (stream.pc.connectionId === arg.connectionId) {
stream.pc.setQualityLevel(level);
}
Expand Down
2 changes: 1 addition & 1 deletion scripts/installUbuntuDeps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ install_mongodb(){
}

install_conan(){
sudo pip3 install conan==1.43
sudo pip3 install conan==1.46
}

install_cpplint(){
Expand Down

0 comments on commit 4bb40ab

Please sign in to comment.