Added type check for id
This commit is contained in:
@@ -249,7 +249,7 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
const identify = (data, id = undefined) => {
|
const identify = (data, id = undefined) => {
|
||||||
if (id) {
|
if (id && typeof id === 'string') {
|
||||||
identity = id;
|
identity = id;
|
||||||
}
|
}
|
||||||
/* Clear cache since this will result in another session */
|
/* Clear cache since this will result in another session */
|
||||||
|
|||||||
Reference in New Issue
Block a user