Skip to content
Snippets Groups Projects
Unverified Commit 51b5bb53 authored by ThibG's avatar ThibG Committed by GitHub
Browse files

Fix new audio player features not working on Safari (#14465)

Fixes #14462
parent 5faf2de9
No related branches found
No related tags found
No related merge requests found
......@@ -269,8 +269,9 @@ class Audio extends React.PureComponent {
}
_initAudioContext () {
const context = new AudioContext();
const source = context.createMediaElementSource(this.audio);
const AudioContext = window.AudioContext || window.webkitAudioContext;
const context = new AudioContext();
const source = context.createMediaElementSource(this.audio);
this.visualizer.setAudioContext(context, source);
source.connect(context.destination);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment