diff --git a/src/client/actions/CallActions.js b/src/client/actions/CallActions.js index 8cece3c..bff2ca6 100644 --- a/src/client/actions/CallActions.js +++ b/src/client/actions/CallActions.js @@ -38,7 +38,7 @@ export const connect = () => dispatch => { } export const getCameraStream = () => dispatch => { - return getUserMedia({ video: true, audio: true }) + return getUserMedia({ video: { facingMode: 'user' }, audio: true }) .then(stream => { dispatch(StreamActions.addStream({ stream, userId: constants.ME })) return stream