Skip to content

Commit bbb6b95

Browse files
committed
fix(audio-recording): add necessary CSP connect domain
Signed-off-by: Julien Veyssier <[email protected]>
1 parent 68485be commit bbb6b95

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

lib/Listener/CSPListener.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ public function handle(Event $event): void {
3030

3131
$csp = new ContentSecurityPolicy();
3232
$csp->addAllowedWorkerSrcDomain('blob:');
33+
$csp->addAllowedConnectDomain('blob:');
3334
$event->addPolicy($csp);
3435
}
3536
}

0 commit comments

Comments
 (0)