From 4ec672923f573fa26d29d08274ec09fdf8839989 Mon Sep 17 00:00:00 2001 From: Bo-Yi Wu Date: Sun, 13 Dec 2020 22:09:05 +0800 Subject: [PATCH] chore(hms): ignore error check --- gorush/notification_hms.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gorush/notification_hms.go b/gorush/notification_hms.go index 22b23ef..9a26412 100644 --- a/gorush/notification_hms.go +++ b/gorush/notification_hms.go @@ -188,7 +188,7 @@ func PushToHuawei(req PushNotification) bool { Retry: var isError = false - notification, err := GetHuaweiNotification(req) + notification, _ := GetHuaweiNotification(req) client, err = InitHMSClient(PushConf.Huawei.APIKey, PushConf.Huawei.APPId)