Skip to content

Commit

Permalink
Merge branch 'development' of https://github.com/vpnhood/vpnhood into…
Browse files Browse the repository at this point in the history
… development
  • Loading branch information
trudyhood committed Dec 8, 2024
2 parents 56048c6 + 7a3f704 commit d9df3bf
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
Binary file modified VpnHood.Client.App.Resources/Resources/SPA.zip
Binary file not shown.
10 changes: 10 additions & 0 deletions VpnHood.Client/ClientTrackerBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,16 @@ public static TrackEvent BuildEndPointStatus(IPEndPoint endPoint, bool available
}
};
}
public static TrackEvent BuildShowAdStatus(string adNetwork, bool isShow)
{
return new TrackEvent {
EventName = "vh_ad_status",
Parameters = new Dictionary<string, object> {
{ "ad_network", adNetwork },
{ "is_show", isShow },
}
};
}

public static TrackEvent BuildUsage(Traffic traffic, int requestCount, int connectionCount)
{
Expand Down

0 comments on commit d9df3bf

Please sign in to comment.