mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
chat log model update
This commit is contained in:
parent
911100923f
commit
aa7b891150
@ -121,6 +121,9 @@ func GetSwitchFromOptions(Options map[string]bool, key string) (result bool) {
|
|||||||
}
|
}
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
func SetSwitchFromOptions(Options map[string]bool, key string, value bool) {
|
func SetSwitchFromOptions(options map[string]bool, key string, value bool) {
|
||||||
Options[key] = value
|
if options == nil {
|
||||||
|
options = make(map[string]bool, 5)
|
||||||
|
}
|
||||||
|
options[key] = value
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user