options add value

This commit is contained in:
Gordon 2022-05-18 11:49:24 +08:00 committed by Xinwei Xiong(cubxxw-openim)
parent e459295a72
commit f26170540f
2 changed files with 4 additions and 2 deletions

View File

@ -48,9 +48,8 @@ func newUserSendMsgReq(params *ManagementSendMsgReq) *pbChat.SendMsgReq {
newContent = params.Content["revokeMsgClientID"].(string)
default:
}
var options map[string]bool
options := make(map[string]bool, 5)
if params.IsOnlineOnly {
options = make(map[string]bool, 5)
utils.SetSwitchFromOptions(options, constant.IsOfflinePush, false)
utils.SetSwitchFromOptions(options, constant.IsHistory, false)
utils.SetSwitchFromOptions(options, constant.IsPersistent, false)

View File

@ -116,6 +116,9 @@ func JsonStringToMap(str string) (tempMap map[string]int32) {
return tempMap
}
func GetSwitchFromOptions(Options map[string]bool, key string) (result bool) {
if Options == nil {
return true
}
if flag, ok := Options[key]; !ok || flag {
return true
}