MemberListDecoratorAPI: Fix

This commit is contained in:
Vendicated 2023-10-25 16:29:37 +02:00 committed by V
parent 7e0fc1d0ea
commit 9895540943

@ -25,18 +25,23 @@ export default definePlugin({
authors: [Devs.TheSun, Devs.Ven], authors: [Devs.TheSun, Devs.Ven],
patches: [ patches: [
{ {
find: "lostPermissionTooltipText,", find: ".lostPermission)",
replacement: { replacement: [
match: /decorators:.{0,100}?children:\[(?<=(\i)\.lostPermissionTooltipText.+?)/, {
replace: "$&...Vencord.Api.MemberListDecorators.__getDecorators($1)," match: /let\{[^}]*lostPermissionTooltipText:\i[^}]*\}=(\i),/,
replace: "$&vencordProps=$1,"
}, {
match: /decorators:.{0,100}?children:\[/,
replace: "$&...(typeof vencordProps=='undefined'?[]:Vencord.Api.MemberListDecorators.__getDecorators(vencordProps)),"
} }
]
}, },
{ {
find: "PrivateChannel.renderAvatar", find: "PrivateChannel.renderAvatar",
replacement: [ replacement: [
// props are shadowed by nested props so we have to do this // props are shadowed by nested props so we have to do this
{ {
match: /\i=(\i)\.applicationStream,/, match: /let\{[^}]*applicationStream:\i[^}]*\}=(\i),/,
replace: "$&vencordProps=$1," replace: "$&vencordProps=$1,"
}, },
{ {