Skip to content

Commit

Permalink
Fixes issue #2514 - Zammad Webcam-Avatar-Feature broken.
Browse files Browse the repository at this point in the history
  • Loading branch information
znuny-robo committed Mar 14, 2019
1 parent 17ed0a1 commit 124d979
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion app/assets/javascripts/app/controllers/_profile/avatar.coffee
Expand Up @@ -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()
Expand Down

0 comments on commit 124d979

Please sign in to comment.