1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-07-29 05:58:30 +00:00

More bugfixes. Actually implement the API test experiment.

This commit is contained in:
SirStendec 2018-04-12 02:29:43 -04:00
parent 99f9974dea
commit 1b2ff27530
10 changed files with 57 additions and 13 deletions

View file

@ -375,7 +375,7 @@ export default class MainMenu extends Module {
if ( a.sort < b.sort ) return -1;
if ( a.sort > b.sort ) return 1;
return a.key.localeCompare(b.key);
return a.key && a.key.localeCompare(b.key);
});
this.log.info(`Built Tree in ${(performance.now() - started).toFixed(5)}ms with ${Object.keys(tree).length} structure nodes and ${this._settings_count} settings nodes.`);