You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just discovered that safe apps that use RPC calls aren't working well in firefox because for some reason request ids are duplicated, and it's all because: window?.performance.now().toString(36); // this is the code used to generate a request id
In chrome, it would return something like 251131.48499999807 but in Firefox it returns only the integer part, turns out they did it to protect from fingerprinting 🤯
The text was updated successfully, but these errors were encountered:
I just discovered that safe apps that use RPC calls aren't working well in firefox because for some reason request ids are duplicated, and it's all because:
window?.performance.now().toString(36); // this is the code used to generate a request id
In chrome, it would return something like 251131.48499999807 but in Firefox it returns only the integer part, turns out they did it to protect from fingerprinting 🤯
The text was updated successfully, but these errors were encountered: