- Rooms screen: inline search filter with toggle — replaces the no-op button - Chat screen: room options sheet — member list, invite, leave room - rooms_repository: remove debug prints - web/.htaccess: COOP+COEP headers for SharedArrayBuffer / LiveKit E2EE worker (was on production but missing from source; adds it to build output automatically) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
7 lines
294 B
ApacheConf
7 lines
294 B
ApacheConf
# Required for SharedArrayBuffer — needed by LiveKit E2EE frame encryption.
|
|
# Without COOP+COEP, the LiveKit E2EE web worker cannot be created.
|
|
<IfModule mod_headers.c>
|
|
Header set Cross-Origin-Opener-Policy "same-origin"
|
|
Header set Cross-Origin-Embedder-Policy "require-corp"
|
|
</IfModule>
|