Fix broken KOR SSLoth-Browser again... actually fix more this time

Well, I'll say never mix integer with bool
This new version literally inverted new/old for kor
I originally wrote it as !old, it's literally now !(new=1=true)
This commit is contained in:
Danny Tsai 2023-05-27 18:54:21 +08:00 committed by lifehackerhansol
parent af618b13cd
commit 0a3aa8b8a1
No known key found for this signature in database
GPG key ID: 80FB184AFC0B3B0E

View file

@ -45,11 +45,11 @@ function can_ssloth(major, minor, native, region, model) {
} else if (region == "K") {
if
(
(!model && minor == 4 && native == 33) ||
(!model && minor == 5 && native == 34) ||
(!model && minor == 6 && native == 35) ||
(!model && minor == 7 && native == 35) ||
(!model && minor == 8 && native == 35) ||
(model && minor == 4 && native == 33) ||
(model && minor == 5 && native == 34) ||
(model && minor == 6 && native == 35) ||
(model && minor == 7 && native == 35) ||
(model && minor == 8 && native == 35) ||
(minor == 9 && native == 36) ||
(minor == 10 && native == 37) ||
(minor == 12 && native == 38) ||