mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 12:20:54 +00:00
Merge pull request #1631 from yunkai/issue1
Fix regression caused by commit ad65479
This commit is contained in:
commit
fbb98fbe1f
@ -36,6 +36,7 @@
|
||||
package cors
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
"regexp"
|
||||
"strconv"
|
||||
"strings"
|
||||
@ -215,6 +216,7 @@ func Allow(opts *Options) beego.FilterFunc {
|
||||
for key, value := range headers {
|
||||
ctx.Output.Header(key, value)
|
||||
}
|
||||
ctx.ResponseWriter.WriteHeader(http.StatusOK)
|
||||
return
|
||||
}
|
||||
headers = opts.Header(origin)
|
||||
|
Loading…
Reference in New Issue
Block a user