Allow all websocket origins in development mode
This commit is contained in:
parent
22d8b8b363
commit
1a7360a573
1 changed files with 6 additions and 0 deletions
|
@ -30,6 +30,12 @@ func Run() {
|
|||
sessions = newSessionStore()
|
||||
channelStore = storage.NewChannelStore()
|
||||
|
||||
if viper.GetBool("dev") {
|
||||
upgrader.CheckOrigin = func(r *http.Request) bool {
|
||||
return true
|
||||
}
|
||||
}
|
||||
|
||||
reconnectIRC()
|
||||
initAuth()
|
||||
initFileServer()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue