summaryrefslogtreecommitdiffstats
path: root/app/notification.go
diff options
context:
space:
mode:
Diffstat (limited to 'app/notification.go')
-rw-r--r--app/notification.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/notification.go b/app/notification.go
index a7093e17f..4929d56f4 100644
--- a/app/notification.go
+++ b/app/notification.go
@@ -693,7 +693,7 @@ func (a *App) ClearPushNotification(userId string, channelId string) {
}
func (a *App) sendToPushProxy(msg model.PushNotification, session *model.Session) {
- msg.ServerId = utils.CfgDiagnosticId
+ msg.ServerId = a.DiagnosticId()
request, _ := http.NewRequest("POST", *a.Config().EmailSettings.PushNotificationServer+model.API_URL_SUFFIX_V1+"/send_push", strings.NewReader(msg.ToJson()))