Skip to content

Commit

Permalink
Correct function parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
Robi9 committed Nov 7, 2023
1 parent a630c32 commit 8a0766c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/external/weni/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ func (s *service) Call(session flows.Session, params assets.MsgCatalogParam, log
return callResult, err
}
channelUUID := params.ChannelUUID
channel, err := models.GetActiveChannelByUUID(ctx, *db, channelUUID)
channel, err := models.GetActiveChannelByUUID(ctx, db, channelUUID)
if err != nil {
return callResult, err
}
Expand Down

0 comments on commit 8a0766c

Please sign in to comment.