diff --git a/Library/0BDFDB.plugin.js b/Library/0BDFDB.plugin.js index 1512ea8dfc..3f53ff8c41 100644 --- a/Library/0BDFDB.plugin.js +++ b/Library/0BDFDB.plugin.js @@ -4510,7 +4510,7 @@ module.exports = (_ => { return BDFDB.ArrayUtils.removeCopies(className.split(" ")).join(" ") || fallbackClassName; } }; - const generationChars = "0123456789ABCDEFGHIJKMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-_".split(""); + const generationChars = "0123456789ABCDEFGHIJKMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz_-".split(""); Internal.generateClassId = function () { let id = ""; while (id.length < 6) id += generationChars[Math.floor(Math.random() * generationChars.length)];