diff --git a/Library/0BDFDB.plugin.js b/Library/0BDFDB.plugin.js index 7d3513df76..3fd82c97b8 100644 --- a/Library/0BDFDB.plugin.js +++ b/Library/0BDFDB.plugin.js @@ -7526,7 +7526,7 @@ module.exports = (_ => { for (let type of QueuedComponents) if (typeof plugin[`on${type}`] === "function") { PluginStores.patchQueues[type].query.push(plugin); PluginStores.patchQueues[type].query = BDFDB.ArrayUtils.removeCopies(PluginStores.patchQueues[type].query); - PluginStores.patchQueues[type].query.sort((x, y) => {return x.name < y.name ? -1 : x.name > y.name ? 1 : 0;}); + PluginStores.patchQueues[type].query.sort((x, y) => x.name < y.name ? -1 : x.name > y.name ? 1 : 0); for (let module of PluginStores.patchQueues[type].modules) InternalBDFDB.patchContextMenuForPlugin(plugin, type, module); } };