Update EditUsers.plugin.js

This commit is contained in:
Mirco Wittrien 2024-08-15 18:33:46 +02:00
parent b4ff7a4dc6
commit 8c4a11396c
1 changed files with 7 additions and 7 deletions

View File

@ -2,7 +2,7 @@
* @name EditUsers * @name EditUsers
* @author DevilBro * @author DevilBro
* @authorId 278543574059057154 * @authorId 278543574059057154
* @version 4.9.2 * @version 4.9.3
* @description Allows you to locally edit Users * @description Allows you to locally edit Users
* @invite Jx3TjNS * @invite Jx3TjNS
* @donate https://www.paypal.me/MircoWittrien * @donate https://www.paypal.me/MircoWittrien
@ -712,13 +712,13 @@ module.exports = (_ => {
const renderChildren = accountButton.props.children; const renderChildren = accountButton.props.children;
accountButton.props.children = BDFDB.TimeUtils.suppress((...args) => { accountButton.props.children = BDFDB.TimeUtils.suppress((...args) => {
const returnValue = renderChildren(...args); const returnValue = renderChildren(...args);
const renderChildren2 = returnValue.props.children.props.children; const renderNameTag = returnValue.props.renderNameTag;
returnValue.props.children.props.children = BDFDB.TimeUtils.suppress((...args2) => { returnValue.props.renderNameTag = BDFDB.TimeUtils.suppress((...args2) => {
const returnValue2 = renderChildren2(...args2); const nameTag = renderNameTag(...args2);
let username = BDFDB.ReactUtils.findChild(returnValue2, {props: [["className", BDFDB.disCN.accountinfodetails]]}); let username = BDFDB.ReactUtils.findChild(nameTag, {props: [["className", BDFDB.disCN.accountinfodetails]]});
if (username) this.changeUserColor(username.props.children, e.instance.props.currentUser.id); if (username) this.changeUserColor(username.props.children, e.instance.props.currentUser.id);
return returnValue2; return nameTag;
}, "Error in Children Render of Account Button Children!", this); }, "Error in Render NameTag in Account Button!", this);
return returnValue; return returnValue;
}, "Error in Children Render of Account Button!", this); }, "Error in Children Render of Account Button!", this);
} }