Skip to content

Commit

Permalink
new ctor to avoid breaking changhes
Browse files Browse the repository at this point in the history
  • Loading branch information
phillip-haydon committed Dec 9, 2024
1 parent c83c6ab commit 39b3289
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Mindscape.Raygun4Net.NetCore.Common/RaygunClientBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,11 @@ protected RaygunClientBase(RaygunSettingsBase settings, HttpClient client)
{
}

protected RaygunClientBase(RaygunSettingsBase settings, IRaygunUserProvider userProvider)
: this(settings, DefaultClient, userProvider, [])
{
}

protected RaygunClientBase(RaygunSettingsBase settings, IRaygunUserProvider userProvider, IEnumerable<IMessageBuilder> messageBuilders)
: this(settings, DefaultClient, userProvider, messageBuilders)
{
Expand Down

0 comments on commit 39b3289

Please sign in to comment.