Skip to content

Commit

Permalink
fix: fix passing targeting params on android
Browse files Browse the repository at this point in the history
  • Loading branch information
slawomirzaba committed Nov 29, 2024
1 parent fc64cbf commit ff251c6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ data class SPCampaign(
val rawTargetingParam: ReadableMap?,
val supportLegacyUSPString: Boolean
) {
val targetingParams = rawTargetingParam?.toHashMap()?.map { TargetingParam(it.key, it.toString()) } ?: emptyList()
val targetingParams = rawTargetingParam?.toHashMap()?.map { TargetingParam(it.key, it.value.toString()) } ?: emptyList()
}

data class SPCampaigns(
Expand Down

0 comments on commit ff251c6

Please sign in to comment.