partkeepr / PartKeepr

Open Source Inventory Management
http://www.partkeepr.org
GNU General Public License v3.0
1.38k stars 400 forks source link

issue in webcam js support in Chrome #1090

Closed allali closed 4 years ago

allali commented 4 years ago

System Information

Please attach files, for example, screenshots to describe your issue. If you can, create a screenshot ob View->System Information.

How to reproduce

There is an issue in file /web/js/compiled/main2.js at line 19474:

this.video.src = window.URL.createObjectURL(stream);

is not supported by Chrome anymore, should be replace by:

this.video.srcObject = stream;

christianlupus commented 4 years ago

This is already known in #1002 (Firefox) and a PR #1076 is also present.

baradhili commented 4 years ago

duplicate #1002