ep_webrtc 2.0.3 → 2.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/static/js/index.js +4 -1
package/package.json
CHANGED
package/static/js/index.js
CHANGED
|
@@ -886,7 +886,10 @@ exports.rtc = new class {
|
|
|
886
886
|
autoplay: '',
|
|
887
887
|
muted: isLocal ? '' : null,
|
|
888
888
|
})
|
|
889
|
-
.prop(
|
|
889
|
+
.prop({
|
|
890
|
+
muted: isLocal, // Setting the 'muted' attribute isn't sufficient for some reason.
|
|
891
|
+
volume: isLocal ? 0.0 : 1.0, // Long shot attempt at fixing echo in Safari.
|
|
892
|
+
});
|
|
890
893
|
const $interface = $('<div>')
|
|
891
894
|
.addClass('interface-container')
|
|
892
895
|
.attr('id', `interface_${videoId}`);
|