Skip to content

Commit 2c2f3be

Browse files
fix: valid vuid added
1 parent de1b40f commit 2c2f3be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/ODP/OdpEventManager.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ open class OdpEventManager {
6060

6161
func identifyUser(vuid: String?, userId: String?) {
6262
var identifiers = [String: String]()
63-
if let _vuid = vuid {
63+
if let _vuid = vuid, VuidManager.isVuid(_vuid) {
6464
identifiers[Constants.ODP.keyForVuid] = _vuid
6565
}
6666
if let userId = userId {

0 commit comments

Comments
 (0)