moreUserTags: fix user tag in member list (#1730)

This commit is contained in:
AutumnVN 2023-09-19 09:10:48 +07:00 committed by V
parent 1f87d14ab2
commit fc0417eb80
No known key found for this signature in database
GPG key ID: A1DC0CFB5615D905

View file

@ -185,7 +185,7 @@ const settings = definePluginSettings({
export default definePlugin({ export default definePlugin({
name: "MoreUserTags", name: "MoreUserTags",
description: "Adds tags for webhooks and moderative roles (owner, admin, etc.)", description: "Adds tags for webhooks and moderative roles (owner, admin, etc.)",
authors: [Devs.Cyn, Devs.TheSun, Devs.RyanCaoDev, Devs.LordElias], authors: [Devs.Cyn, Devs.TheSun, Devs.RyanCaoDev, Devs.LordElias, Devs.AutumnVN],
settings, settings,
patches: [ patches: [
// add tags to the tag list // add tags to the tag list
@ -232,9 +232,8 @@ export default definePlugin({
{ {
find: ".renderBot=function(){", find: ".renderBot=function(){",
replacement: { replacement: {
match: /this.props.user;return null!=(\i)&&.{0,10}\?(.{0,50})\.botTag/, match: /\.BOT;return null!=(\i)&&.{0,10}\?(.{0,50})\.botTag,type:\i/,
replace: "this.props.user;var type=$self.getTag({...this.props,origType:$1.bot?0:null,location:'not-chat'});\ replace: ".BOT;var type=$self.getTag({...this.props,origType:$1.bot?0:null,location:'not-chat'});return type!==null?$2.botTag,type"
return type!==null?$2.botTag,type"
} }
}, },
// pass channel id down props to be used in profiles // pass channel id down props to be used in profiles