Skip to content

Commit 4822477

Browse files
committed
Add a fingerprint for Windows 10 + IE11
1 parent cd68843 commit 4822477

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

data/js/detect/os.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,6 @@ os_detect.getVersion = function(){
338338
case "Windows NT 6.1": os_name = "Windows 7"; break;
339339
case "Windows NT 6.2": os_name = "Windows 8"; break;
340340
case "Windows NT 6.3": os_name = "Windows 8.1"; break;
341-
case "Windows NT 10.0": os_name = "Windows 10"; break;
342341
}
343342
}
344343
if (version.match(/Linux/)) {
@@ -974,6 +973,12 @@ os_detect.getVersion = function(){
974973
os_name = "Windows 8";
975974
os_sp = "SP0";
976975
break;
976+
case "1100":
977+
// IE 11.0.10011.0 Windows 10.0 (Build 10074) English - insider preview
978+
ua_version = "11.0";
979+
os_name = "Windows 10";
980+
os_sp = "SP0";
981+
break;
977982
default:
978983
unknown_fingerprint = version;
979984
break;

0 commit comments

Comments
 (0)