diff options
author | Steve <nilslice@gmail.com> | 2017-03-07 00:40:24 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-07 00:40:24 -0800 |
commit | c8bd692a44795f9354acb4583dc35ec3a2604096 (patch) | |
tree | e08663cff0a1879534c5434e52916b6649e1f056 /system/api/push.go | |
parent | 50613a4972b41d650857e88eae65b2a0e11176ce (diff) | |
parent | d690a82142f3a7c7fa899b970359e3e1da5ea238 (diff) |
Merge pull request #93 from ponzu-cms/ponzu-dev
[core] Add Updateable interface and HTTP/2 Push fixes
Diffstat (limited to 'system/api/push.go')
-rw-r--r-- | system/api/push.go | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/system/api/push.go b/system/api/push.go index b7c5642..a6402bc 100644 --- a/system/api/push.go +++ b/system/api/push.go @@ -7,6 +7,7 @@ import ( "github.com/ponzu-cms/ponzu/system/item" "github.com/tidwall/gjson" + "golang.org/x/net/http2" ) func push(res http.ResponseWriter, req *http.Request, pt func() interface{}, data []byte) { @@ -23,8 +24,12 @@ func push(res http.ResponseWriter, req *http.Request, pt func() interface{}, dat for i := range values { val := values[i] val.ForEach(func(k, v gjson.Result) bool { + if v.String() == "null" { + return true + } + err := pusher.Push(v.String(), nil) - if err != nil { + if err != nil && err != http2.ErrRecursivePush { log.Println("Error during Push of value:", v.String()) } |