DataDog / dd-sdk-flutter

Flutter bindings and tools for utilizing Datadog Mobile SDKs
Apache License 2.0
43 stars 42 forks source link

fix: Error setting firstPartyHosts in Flutter Web #556

Closed fuzzybinary closed 7 months ago

fuzzybinary commented 8 months ago

What and why?

The Browser SDK is checking if the type supplied to firstPartyHosts is a RegExp, but the Dart RegExp returns false for that check. Fix it so that we create a JavaScript RegExp.

Note, this only works because the RegExp is very simple in this case. More complicated RegExes may not convert properly.

refs: #554

How?

If needed, a description of how this PR accomplishes what it does.

Review checklist