Update BetterNsfwTag.plugin.js

This commit is contained in:
Mirco Wittrien 2020-10-30 22:12:58 +01:00 committed by GitHub
parent 7f53b36b8a
commit 4e39d2fa5a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 3 deletions

View File

@ -13,8 +13,13 @@ module.exports = (_ => {
"info": {
"name": "BetterNsfwTag",
"author": "DevilBro",
"version": "1.2.6",
"version": "1.2.7",
"description": "Add a more noticeable tag to NSFW channels"
},
"changeLog": {
"fixed": {
"Works again": "Yes"
}
}
};
return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class {
@ -49,7 +54,7 @@ module.exports = (_ => {
onLoad() {
this.patchedModules = {
after: {
ChannelItem: "render"
ChannelItem: "default"
}
};
}
@ -82,4 +87,4 @@ module.exports = (_ => {
}
};
})(window.BDFDB_Global.PluginUtils.buildPlugin(config));
})();
})();