fix: remove Access-Control-Allow-Origin. closes #3660

Signed-off-by: Deluan <deluan@navidrome.org>
This commit is contained in:
Deluan 2025-01-22 18:24:11 -05:00
parent 47e3fdb1b8
commit 657fe11f53

View file

@ -139,7 +139,6 @@ func (b *broker) ServeHTTP(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "text/event-stream")
w.Header().Set("Cache-Control", "no-cache, no-transform")
w.Header().Set("Connection", "keep-alive")
w.Header().Set("Access-Control-Allow-Origin", "*")
// Tells Nginx to not buffer this response. See https://stackoverflow.com/a/33414096
w.Header().Set("X-Accel-Buffering", "no")