This commit is contained in:
1-6
2023-07-28 19:27:13 +08:00
parent aab54bf5bc
commit 7ab3d370de
4 changed files with 23 additions and 9 deletions
+2 -2
View File
@@ -573,9 +573,9 @@ func (f *Factory) Sender2(options map[string]string) *CustomSender {
return sender
}
func (f *Factory) Sender() interface{} {
func (f *Factory) Sender(options map[string]string) interface{} {
return &SenderJsIplm{
Message: f.Sender2(nil),
Message: f.Sender2(options),
Vm: f.vm,
Private: "private",
Group: "group",