Browse Source

fix: IFrame users on Safari start audio/video muted

dev1
Jaya Allamsetty 5 years ago
parent
commit
581e77b87e
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      modules/browser/BrowserCapabilities.js

+ 1
- 1
modules/browser/BrowserCapabilities.js View File

80
      * @returns {boolean}
80
      * @returns {boolean}
81
      */
81
      */
82
     isUserInteractionRequiredForUnmute() {
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…
Cancel
Save