config file update

This commit is contained in:
Gordon 2022-06-17 12:39:26 +08:00
parent 92cb2e7eab
commit 9b5bd47760

View File

@ -69,9 +69,11 @@ func MsgToUser(pushMsg *pbPush.PushMsgReq) {
return
}
}
if err := db.DB.HandleSignalInfo(pushMsg.OperationID, pushMsg.MsgData); err != nil {
log.NewError(pushMsg.OperationID, utils.GetSelfFuncName(), err.Error(), pushMsg.MsgData)
return
if pushMsg.MsgData.ContentType == constant.SignalingNotification {
if err := db.DB.HandleSignalInfo(pushMsg.OperationID, pushMsg.MsgData); err != nil {
log.NewError(pushMsg.OperationID, utils.GetSelfFuncName(), err.Error(), pushMsg.MsgData)
return
}
}
//Use offline push messaging
var UIDList []string