Fix key ID from param util

This commit is contained in:
Vortrex
2021-07-25 22:20:30 -05:00
parent cd6f275d4e
commit 2b5a248c95

View File

@@ -1412,7 +1412,7 @@ function getKeyIdFromParams(params) {
//}
for(let i in bindableKeys) {
if(bindableKeys[i].indexOf(tempParams.toLowerCase()) != -1) {
if(toLowerCase(bindableKeys[i]) == toLowerCase(tempParams)) {
return i;
}
}