From 5511106d93a16626290763e8772b8b562f22100d Mon Sep 17 00:00:00 2001 From: George Goldberg Date: Tue, 17 Apr 2018 15:13:16 +0100 Subject: MM-9918: Trim trailing / from push proxy URL. (#8635) --- app/notification.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/notification.go') diff --git a/app/notification.go b/app/notification.go index 2d56d294a..e4ee041af 100644 --- a/app/notification.go +++ b/app/notification.go @@ -736,7 +736,7 @@ func (a *App) ClearPushNotification(userId string, channelId string) { func (a *App) sendToPushProxy(msg model.PushNotification, session *model.Session) { msg.ServerId = a.DiagnosticId() - request, _ := http.NewRequest("POST", *a.Config().EmailSettings.PushNotificationServer+model.API_URL_SUFFIX_V1+"/send_push", strings.NewReader(msg.ToJson())) + request, _ := http.NewRequest("POST", strings.TrimRight(*a.Config().EmailSettings.PushNotificationServer, "/")+model.API_URL_SUFFIX_V1+"/send_push", strings.NewReader(msg.ToJson())) if resp, err := a.HTTPClient(true).Do(request); err != nil { l4g.Error("Device push reported as error for UserId=%v SessionId=%v message=%v", session.UserId, session.Id, err.Error()) -- cgit v1.2.3-1-g7c22