Explorar el Código

fix: IFrame users on Safari start audio/video muted

dev1
Jaya Allamsetty hace 5 años
padre
commit
581e77b87e
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      modules/browser/BrowserCapabilities.js

+ 1
- 1
modules/browser/BrowserCapabilities.js Ver fichero

@@ -80,7 +80,7 @@ export default class BrowserCapabilities extends BrowserDetection {
80 80
      * @returns {boolean}
81 81
      */
82 82
     isUserInteractionRequiredForUnmute() {
83
-        return (this.isFirefox() && this.isVersionLessThan('68')) || this.isSafari();
83
+        return this.isFirefox() && this.isVersionLessThan('68');
84 84
     }
85 85
 
86 86
     /**

Loading…
Cancelar
Guardar