diff --git a/rpc/server.go b/rpc/server.go index 652d571..a4d6206 100644 --- a/rpc/server.go +++ b/rpc/server.go @@ -2,7 +2,6 @@ package rpc import ( "context" - "fmt" "net" "strings" "sync" @@ -97,10 +96,7 @@ func (s *Server) Send(ctx context.Context, in *proto.NotificationRequest) (*prot } if in.Data != nil { - notification.Data = map[string]interface{}{} - for k, v := range in.Data.AsMap() { - notification.Data[k] = fmt.Sprintf("%v", v) - } + notification.Data = in.Data.AsMap() } go func() {