Commit ff28e33d authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Set default resolution to 640x400.

We used to accept the browser's default, which varied widely
between devices.
parent e4682ff2
......@@ -1402,6 +1402,9 @@ async function addLocalMedia(localId) {
} else if(settings.blackboardMode) {
video.width = { min: 640, ideal: 1920 };
video.height = { min: 400, ideal: 1080 };
} else {
video.width = { ideal: 640 };
video.height = { ideal: 400 };
}
}
......
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