diff --git a/Plugins/ServerFolders/ServerFolders.plugin.js b/Plugins/ServerFolders/ServerFolders.plugin.js index 76c4ea80ed..1131f2ed09 100644 --- a/Plugins/ServerFolders/ServerFolders.plugin.js +++ b/Plugins/ServerFolders/ServerFolders.plugin.js @@ -331,7 +331,7 @@ class ServerFolders { getDescription () {return "Adds the feature to create folders to organize your servers. Right click a server > 'Serverfolders' > 'Create Server' to create a server. To add servers to a folder hold 'Ctrl' and drag the server onto the folder, this will add the server to the folderlist and hide it in the serverlist. To open a folder click the folder. A folder can only be opened when it has at least one server in it. To remove a server from a folder, open the folder and either right click the server > 'Serverfolders' > 'Remove Server from Folder' or hold 'Del' and click the server in the folderlist.";} - getVersion () {return "5.8.2";} + getVersion () {return "5.8.3";} getAuthor () {return "DevilBro";} @@ -413,7 +413,7 @@ class ServerFolders { observer = new MutationObserver((changes, _) => { changes.forEach( (change, i) => { - if (!document.querySelector(".foldercontainer.foldercontentopen")) return; + if (!document.querySelector(".foldercontent.foldercontentopen")) return; if (change.type == "attributes" && change.attributeName == "class") { var serverObj = this.getParentObject(change.target, BDFDB.disCN.guild); var folderDiv = this.getFolderOfServer(serverObj);