Disable CORS again...

Signed-off-by: Arzumify <jliwin98@danwin1210.de>
This commit is contained in:
Tracker-Friendly 2024-10-15 20:13:38 +01:00
parent 7a9af4ae67
commit 8943808264
1 changed files with 1 additions and 1 deletions

View File

@ -359,7 +359,7 @@ func Main(information library.ServiceInitializationInformation) *chi.Mux {
disableCorsHandleFunc := func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Access-Control-Allow-Origin", "*")
w.Header().Set("Access-Control-Allow-Methods", "POST")
w.Header().Set("Access-Control-Allow-Headers", "Content-Type")
w.Header().Set("Access-Control-Allow-Headers", "authorization, content-type")
w.Header().Set("Content-Type", "application/json")
w.WriteHeader(200)
}