Skip to content

Commit

Permalink
fix(camera): Desk View Camera was added into blacklist
Browse files Browse the repository at this point in the history
  • Loading branch information
v-dyomin authored and gruhn committed Feb 24, 2023
1 parent 4b8ed6d commit ebd06e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/misc/camera.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class Camera {
// media constraints don't allow us to specify which camera we want exactly.
const narrowDownFacingMode = async camera => {
// Filter some devices, known to be bad choices.
const deviceBlackList = ["OBS Virtual Camera", "OBS-Camera"];
const deviceBlackList = ["OBS Virtual Camera", "OBS-Camera", "Desk View Camera"];

const devices = (await navigator.mediaDevices.enumerateDevices())
.filter(({ kind }) => kind === "videoinput")
Expand Down

0 comments on commit ebd06e3

Please sign in to comment.