Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/cyan-oranges-smoke.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@theoplayer/react-native-analytics-bitmovin': patch
---

Fixed an issue where a wrong value for `customUserId` would be set on Android.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ object BitmovinAdapter {
setCdnProvider(metadata.getString(PROP_CDN_PROVIDER) ?: "")
}
if (metadata.hasKey(PROP_CUSTOM_USER_ID)) {
setCdnProvider(metadata.getString(PROP_CUSTOM_USER_ID) ?: "")
setCustomUserId(metadata.getString(PROP_CUSTOM_USER_ID) ?: "")
}
if (metadata.hasKey(PROP_CUSTOM_DATA)) {
setCustomData(parseCustomData(metadata.getMap(PROP_CUSTOM_DATA)))
Expand Down
Loading