Analytics: fix always null identity property

This commit is contained in:
ganfra 2022-02-08 19:34:41 +01:00
parent 8d7e9baf85
commit a19642cd8e
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ data class Identity(
override fun getProperties(): Map<String, Any?>? {
return mutableMapOf<String, Any?>().apply {
put("ftueUseCaseSelection", null)
put("ftueUseCaseSelection", ftueUseCaseSelection?.name)
}.takeIf { it.isNotEmpty() }
}
}