We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 610bdb3 commit 77880d3Copy full SHA for 77880d3
src/main.rs
@@ -209,8 +209,7 @@ async fn app() -> Result<Router> {
209
])
210
// Allow any origin: auth is token/session-based (not cookies),
211
// and Chromecast HLS playback requires CORS from Google's receiver domain
212
- .allow_origin(Any)
213
- .allow_credentials(true);
+ .allow_origin(Any);
214
215
let server_id = get_server_id().await;
216
let admin_users = mc
0 commit comments