This commit is contained in:
cdle 2021-08-20 12:30:21 +08:00
parent 12df758d88
commit 48ded7b44e

View File

@ -97,7 +97,7 @@ var handleMessage = func(msgs ...interface{}) interface{} {
tp := msgs[1].(string)
uid := msgs[2].(int)
gid := 0
if len(msgs) == 4 {
if len(msgs) >= 4 {
gid = msgs[3].(int)
}