This commit is contained in:
cdle
2023-07-05 17:19:56 +08:00
parent 873bccce55
commit 643ecd0f9c
21 changed files with 573 additions and 81 deletions
+4
View File
@@ -613,6 +613,10 @@ func (sender *CustomSender) Reply(msgs ...interface{}) (string, error) {
push = true
case string:
args = append(args, item)
default:
if item != nil {
args = append(args, fmt.Sprint(item))
}
}
}
if len(args) == 0 {