Skip to content

Commit

Permalink
Merging to release-1.5: when setting params convert them to string (#384
Browse files Browse the repository at this point in the history
)

when setting params convert them to string (#384)
  • Loading branch information
buger authored Feb 8, 2024
1 parent 55ee9ea commit 9be5af0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tothic/tothic.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ func SetPathParams(newPathParams map[string]string, profile tap.Profile) {
return
}

err = pathParams.SetKey(profile.GetPrefix(), profile.OrgID, params)
err = pathParams.SetKey(profile.GetPrefix(), profile.OrgID, string(jsonbody))
if err != nil {
log.WithError(err).Error("saving path params")
}
Expand Down

0 comments on commit 9be5af0

Please sign in to comment.