diff options
Diffstat (limited to 'system/api/push.go')
-rw-r--r-- | system/api/push.go | 2 |
1 files changed, 1 insertions, 1 deletions
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()) } |