mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2025-02-16 12:00:03 +03:00
Analytics | if no property use null instead of empty map
This commit is contained in:
parent
2bbb49bdd3
commit
752c884eaa
1 changed files with 1 additions and 1 deletions
|
@ -177,7 +177,7 @@ class DefaultVectorAnalytics @Inject constructor(
|
||||||
?.takeIf { userConsent == true }
|
?.takeIf { userConsent == true }
|
||||||
?.capture(
|
?.capture(
|
||||||
event.getName(),
|
event.getName(),
|
||||||
event.getProperties().orEmpty().toPostHogProperties()
|
event.getProperties()?.toPostHogProperties()
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue