Removed sorting of results

pull/57/head
MillenniumEarl 2020-12-03 11:59:27 +01:00
parent 34d065f84c
commit b414e9adeb
1 changed files with 2 additions and 2 deletions

View File

@ -43,7 +43,7 @@ class PrefixParser {
const key = this._getKeyByValue(dict, p); const key = this._getKeyByValue(dict, p);
if(key) ids.push(parseInt(key)); if(key) ids.push(parseInt(key));
} }
return ids.sort((a, b) => a - b); // JS sort alphabetically, same old problem return ids;
} }
/** /**
@ -65,7 +65,7 @@ class PrefixParser {
// Check if the key exists in the dict // Check if the key exists in the dict
if (id in dict) prefixes.push(dict[id]); if (id in dict) prefixes.push(dict[id]);
} }
return prefixes.sort(); return prefixes;
} }
} }