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:
parent
99f9974dea
commit
1b2ff27530
10 changed files with 57 additions and 13 deletions
|
@ -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.`);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue