Skip to content

Commit

Permalink
BL-12617 host param follow up fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nabalone committed Aug 23, 2023
1 parent e7ec057 commit 25b615b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/DesktopAnalytics/Analytics.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ public class Analytics : IDisposable

private IClient Client;

public Analytics(string apiSecret, UserInfo userInfo, bool allowTracking = true, bool retainPii = false, ClientType clientType = ClientType.Segment)
: this(apiSecret, userInfo, new Dictionary<string, string>(), allowTracking, retainPii, clientType)
public Analytics(string apiSecret, UserInfo userInfo, bool allowTracking = true, bool retainPii = false, ClientType clientType = ClientType.Segment, string host = null)
: this(apiSecret, userInfo, new Dictionary<string, string>(), allowTracking, retainPii, clientType, host)
{

}
Expand Down

0 comments on commit 25b615b

Please sign in to comment.