summaryrefslogtreecommitdiffstats
path: root/app/notification.go
diff options
context:
space:
mode:
Diffstat (limited to 'app/notification.go')
-rw-r--r--app/notification.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/app/notification.go b/app/notification.go
index 3df4a789f..2a8f9ff2e 100644
--- a/app/notification.go
+++ b/app/notification.go
@@ -7,7 +7,6 @@ import (
"fmt"
"html"
"html/template"
- "io/ioutil"
"net/http"
"net/url"
"path/filepath"
@@ -701,8 +700,7 @@ func (a *App) sendToPushProxy(msg model.PushNotification, session *model.Session
} else {
pushResponse := model.PushResponseFromJson(resp.Body)
if resp.Body != nil {
- ioutil.ReadAll(resp.Body)
- resp.Body.Close()
+ consumeAndClose(resp)
}
if pushResponse[model.PUSH_STATUS] == model.PUSH_STATUS_REMOVE {