1
0
mirror of https://github.com/hacks-guide/Guide_3DS.git synced 2025-08-28 10:49:58 +02:00

wrongly coded SSLoth checker (#2210)

SSLoth should check minor version, not major version
This commit is contained in:
Danny Tsai
2023-03-12 23:34:05 +08:00
committed by GitHub
parent 8bbe947bfb
commit 7cbd428283

View File

@@ -1,5 +1,5 @@
function isSSLothable(v) {
var m = v.major;
var m = v.minor;
var n = v.nver;
return (
(m == 4 && n == 37) ||