newrelic / newrelic-client-go

New Relic Client for the Go programming language
https://newrelic.github.io/observability-as-code
Apache License 2.0
75 stars 95 forks source link

fix(browseragent): changing cookiesEnabled field to pointer type #1205

Closed gmanandhar-nr closed 3 months ago

gmanandhar-nr commented 3 months ago

Currently, if user send the value for cookiesEnabled as false for browser agent, that is currently being ignored, and the default value of true is being used. Fixed it by changing the boolean field to a pointer.