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
Device memory check will make mistake if browser name parsed from userAgent is not 'Chrome', 'Chromium' or 'Opera'.
It's because this code: if (fingerprint.deviceMemory !== 0 && !(BROWSER_REF === BROWSERS.CHROME && BROWSER_VERSION_REF >= 63) && !(/Opera/.test(BROWSER_REF) && BROWSER_VERSION_REF >= 50)) { // If deviceMemory != 0 and not recent Chrome or Opera testResult = INCONSISTENT;
Any other browser will lead to a inconsistent result.
e.g.
when use qq browser,
ua: "userAgent": "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.25 Safari/537.36 Core/1.70.3861.400 QQBrowser/10.7.4313.400"
memory: 8G
but memory check failed:
The text was updated successfully, but these errors were encountered:
Device memory check will make mistake if browser name parsed from userAgent is not 'Chrome', 'Chromium' or 'Opera'.

It's because this code:
if (fingerprint.deviceMemory !== 0 && !(BROWSER_REF === BROWSERS.CHROME && BROWSER_VERSION_REF >= 63) && !(/Opera/.test(BROWSER_REF) && BROWSER_VERSION_REF >= 50)) { // If deviceMemory != 0 and not recent Chrome or Opera testResult = INCONSISTENT;
Any other browser will lead to a inconsistent result.
e.g.
when use qq browser,
ua: "userAgent": "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.25 Safari/537.36 Core/1.70.3861.400 QQBrowser/10.7.4313.400"
memory: 8G
but memory check failed:
The text was updated successfully, but these errors were encountered: