Skip to content
This repository has been archived by the owner on Jan 1, 2025. It is now read-only.

Commit

Permalink
Bug fix
Browse files Browse the repository at this point in the history
Summary: user_data check correction for event enhancement.

Differential Revision: D51467064

fbshipit-source-id: 728708d9f61526a11a39cf25b4c217dc79b2a866
  • Loading branch information
odundar authored and facebook-github-bot committed Nov 23, 2023
1 parent b524f26 commit a495e1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion template.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ function enhanceEventData(user_data) {
user_data.ph = gtmeecData.ph;
}

if (!user_data.ln && gtmeecData.ph) {
if (!user_data.ln && gtmeecData.ln) {
user_data.ln = gtmeecData.ln;
}

Expand Down

0 comments on commit a495e1b

Please sign in to comment.