Skip to content

Commit

Permalink
fix missing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
CollinSchneider committed Apr 23, 2024
1 parent 3bab56a commit 24363b4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class UserPropertiesAugmentor < Ingestion::EventPreparers::Base

# .INITIAL_REFERRER semantically makes the most sense becaues the referrer can be 'direct' or a URL
# the _URL suffixes (besides .INITIAL_REFERRER_URL) will only be populated if the referrer is a URL
AnalyticsUserProfile::ReservedMetadataProperties.INITIAL_REFERRER => [Analytics::Event::ReservedPropertyNames.SESSION_REFERRER_URL, Analytics::Event::ReservedPropertyNames.REFERRER]
AnalyticsUserProfile::ReservedMetadataProperties.INITIAL_REFERRER => [Analytics::Event::ReservedPropertyNames.SESSION_REFERRER_URL, Analytics::Event::ReservedPropertyNames.REFERRER],
AnalyticsUserProfile::ReservedMetadataProperties.INITIAL_REFERRER_URL => [Analytics::Event::ReservedPropertyNames.SESSION_REFERRER_URL, Analytics::Event::ReservedPropertyNames.REFERRER],
AnalyticsUserProfile::ReservedMetadataProperties.INITIAL_REFERRER_URL_HOST => [Analytics::Event::ReservedPropertyNames.SESSION_REFERRER_URL_HOST, Analytics::Event::ReservedPropertyNames.REFERRER_URL_HOST],
AnalyticsUserProfile::ReservedMetadataProperties.INITIAL_REFERRER_URL_PATH => [Analytics::Event::ReservedPropertyNames.SESSION_REFERRER_URL_PATH, Analytics::Event::ReservedPropertyNames.REFERRER_URL_PATH],
Expand Down

0 comments on commit 24363b4

Please sign in to comment.