Fixes issue #2514 - Zammad Webcam-Avatar-Feature broken.

This commit is contained in:
Martin Edenhofer 2019-03-14 15:24:44 +01:00
parent 17ed0a13f6
commit 124d979e44

View file

@ -301,7 +301,15 @@ class Camera extends App.ControllerModal
# start to update the preview once its playing # start to update the preview once its playing
@video.on 'playing', @updatePreview @video.on 'playing', @updatePreview
@video.attr 'src', window.URL.createObjectURL(stream) # start stream
# Apparently this functionality (of creating a URL from a MediaStream) is now deprecated
# and has been removed from current versions of Chrome and Firefox as of mid/late 2018.
# See https://developer.mozilla.org/en-US/docs/Web/API/URL/createObjectURL for details.
# Apparently the new recommended approach is to set the srcObject property to the localStream directly:
try
@video.get(0).srcObject = stream
catch err
@video.attr 'src', window.URL.createObjectURL(stream)
# start the stream # start the stream
@video.get(0).play() @video.get(0).play()