Skip to content

Commit

Permalink
Fix typo in referrer proprety name
Browse files Browse the repository at this point in the history
  • Loading branch information
zateutsch authored Dec 14, 2023
1 parent c1596cf commit 4d557a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Microsoft.PWABuilder.IOS.Web/Services/AnalyticsService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public void Record(string url, bool success, IOSAppPackageOptions.Validated? pac
}
if(analyticsInfo?.referrer != null)
{
record.Add("Referrer", analyticsInfo.referrer);
record.Add("referrer", analyticsInfo.referrer);
}
telemetryClient.TrackEvent(name, record);
;
Expand Down

0 comments on commit 4d557a6

Please sign in to comment.