Skip to content

Commit

Permalink
ZeoTap fix: Datatype of data checked (#531)
Browse files Browse the repository at this point in the history
  • Loading branch information
pm-nitin-nimbalkar authored May 31, 2022
1 parent 16b5153 commit 6fc8c6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/userId/eids.js
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ export const USER_IDS_CONFIG = {
source: 'zeotap.com',
atype: 1,
getValue: function getValue(data) {
return data.id;
return isPlainObject(data)? data.id : data;
}
},

Expand Down

0 comments on commit 6fc8c6b

Please sign in to comment.