We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4475af8 + a9463c4 commit be31b8aCopy full SHA for be31b8a
1 file changed
src/analytics.py
@@ -59,7 +59,7 @@ def capture(event: str, distinct_id: str, properties: dict | None = None) -> Non
59
client = get_posthog_client()
60
if client:
61
all_properties = {"application": APPLICATION, **(properties or {})}
62
- client.capture(distinct_id, event, all_properties)
+ client.capture(distinct_id, event, properties=all_properties)
63
64
65
def shutdown() -> None:
0 commit comments