Skip to content

Commit

Permalink
fix(RTC): Specify default width of 1280px for video.
Browse files Browse the repository at this point in the history
Fixes #1571.
  • Loading branch information
jallamsetty1 authored and saghul committed Apr 23, 2021
1 parent 46095de commit 895c7eb
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion modules/RTC/RTCUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,12 @@ const DEFAULT_CONSTRAINTS = {
height: {
ideal: 720,
max: 720,
min: 240
min: 180
},
width: {
ideal: 1280,
max: 1280,
min: 320
}
}
};
Expand Down

0 comments on commit 895c7eb

Please sign in to comment.