We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd07882 commit d86b108Copy full SHA for d86b108
1 file changed
src/extensions/default/Phoenix/serverSync.js
@@ -51,7 +51,7 @@ define(function (require, exports, module) {
51
function _setupUserContext() {
52
userContext = localStorage.getItem(USER_CONTEXT);
53
if(!userContext){
54
- userContext = crypto.randomUUID().split("-")[0];
+ userContext = "p-" + Math.round( Math.random()*10000000000000).toString(16);
55
localStorage.setItem(USER_CONTEXT, userContext);
56
}
57
0 commit comments