Skip to content

Commit

Permalink
Fix missing argument
Browse files Browse the repository at this point in the history
  • Loading branch information
neekolas committed Oct 19, 2023
1 parent ae8023f commit 0fccac9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/api/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ func (s *Server) startGRPC() error {

// Enable the MLS server if a store is provided
if s.Config.MlsStore != nil && s.Config.EnableMls {
s.messagev3, err = messagev3.NewService(s.Waku, s.Log, s.Store)
s.messagev3, err = messagev3.NewService(s.Waku, s.Log, s.Store, s.Config.MlsStore)
if err != nil {
return errors.Wrap(err, "creating mls service")
}
Expand Down

0 comments on commit 0fccac9

Please sign in to comment.