Fast connect but send identify

This commit is contained in:
Madeline
2022-10-31 19:37:46 +11:00
parent 5b849749d5
commit 3dfd864aff
2 changed files with 80 additions and 1 deletions
+6
View File
@@ -119,6 +119,12 @@ const doPatch = (content) => {
"console.log('Prevented deletion of localStorage')"
);
// fast identify
content = content.replaceAll(
"e.isFastConnect=t;t?e._doFastConnectIdentify():e._doResumeOrIdentify()",
"e.isFastConnect=t; if (t !== undefined) e._doResumeOrIdentify();"
);
return content;
};