From 6ea648ae4306e64f5562ca363e0cdea494ba8d46 Mon Sep 17 00:00:00 2001 From: Steve Manuel Date: Thu, 9 Feb 2017 09:37:44 -0800 Subject: remove req.URL.Path from the push target so non-content paths like uploads can be pushed too --- system/api/push.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'system/api/push.go') diff --git a/system/api/push.go b/system/api/push.go index 5db0a53..b7c5642 100644 --- a/system/api/push.go +++ b/system/api/push.go @@ -23,7 +23,7 @@ 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 { - err := pusher.Push(req.URL.Path+v.String(), nil) + err := pusher.Push(v.String(), nil) if err != nil { log.Println("Error during Push of value:", v.String()) } -- cgit v1.2.3