Index: openacs-4/packages/proctoring-support/www/resources/proctoring.js =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/proctoring-support/www/resources/Attic/proctoring.js,v diff -u -r1.1.2.14 -r1.1.2.15 --- openacs-4/packages/proctoring-support/www/resources/proctoring.js 15 Dec 2022 13:26:00 -0000 1.1.2.14 +++ openacs-4/packages/proctoring-support/www/resources/proctoring.js 15 Dec 2022 13:27:29 -0000 1.1.2.15 @@ -240,7 +240,7 @@ this.stopHandle = null; // Prepare to sample stream properties - this.audioCtx = new (window.AudioContext || window.webkitAudioContext)(); + this.audioCtx = new window.AudioContext(); this.analyser = this.audioCtx.createAnalyser(); this.source = this.audioCtx.createMediaStreamSource(this.stream); this.source.connect(this.analyser);