Posthog: drop $initial_person_info from outgoing events

This commit is contained in:
fkwp
2026-05-15 19:02:37 +02:00
parent 7e932d27da
commit a8c5f14037
2 changed files with 45 additions and 0 deletions

View File

@@ -173,6 +173,9 @@ export class PosthogAnalytics {
.slice(0, 3)
.join("");
// drop $initial_person_info for increased privacy.
delete properties["$initial_person_info"];
return properties;
};