Skip to content

Commit

Permalink
Merge pull request #66 from pwa-builder/patch-referrer-property-name
Browse files Browse the repository at this point in the history
Patch: Fix typo in referrer property name
  • Loading branch information
khmyznikov authored Feb 16, 2024
2 parents 2868264 + 4d557a6 commit b19fdca
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 b19fdca

Please sign in to comment.