Force origin test to always pass. Closes #2003

This commit is contained in:
Gabe Kangas 2022-08-02 13:03:11 -07:00
parent 643b54037b
commit c40eaa47e9
No known key found for this signature in database
GPG Key ID: 9A56337728BC81EA

View File

@ -3,6 +3,7 @@ package chat
import ( import (
"bytes" "bytes"
"encoding/json" "encoding/json"
"net/http"
"sync" "sync"
"time" "time"
@ -60,6 +61,12 @@ const (
var upgrader = websocket.Upgrader{ var upgrader = websocket.Upgrader{
ReadBufferSize: 1024, ReadBufferSize: 1024,
WriteBufferSize: 1024, WriteBufferSize: 1024,
// Override default origin check to allow all clients, even those that
// do not match our server.
CheckOrigin: func(r *http.Request) bool {
return true
},
} }
var ( var (