From 427a8f55ba5f3ec2843078c3426eade3d1b6daac Mon Sep 17 00:00:00 2001 From: Madeline <46743919+MaddyUnderStars@users.noreply.github.com> Date: Mon, 31 Oct 2022 19:37:46 +1100 Subject: Fast connect but send identify --- scripts/client.js | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'scripts') diff --git a/scripts/client.js b/scripts/client.js index b31f2fcc..b42217a0 100644 --- a/scripts/client.js +++ b/scripts/client.js @@ -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; }; -- cgit 1.5.1