[skip ci] Fix InvisibleChat button being added to wrong chat box (#1100)
This commit is contained in:
parent
393f76749a
commit
0c54b1fa1d
1 changed files with 8 additions and 2 deletions
|
@ -64,7 +64,13 @@ function Indicator() {
|
|||
|
||||
}
|
||||
|
||||
function ChatBarIcon() {
|
||||
function ChatBarIcon(chatBoxProps: {
|
||||
type: {
|
||||
analyticsName: string;
|
||||
};
|
||||
}) {
|
||||
if (chatBoxProps.type.analyticsName !== "normal") return null;
|
||||
|
||||
return (
|
||||
<Tooltip text="Encrypt Message">
|
||||
{({ onMouseEnter, onMouseLeave }) => (
|
||||
|
@ -133,7 +139,7 @@ export default definePlugin({
|
|||
find: ".activeCommandOption",
|
||||
replacement: {
|
||||
match: /(.)\.push.{1,30}disabled:(\i),.{1,20}\},"gift"\)\)/,
|
||||
replace: "$&;try{$2||$1.push($self.chatBarIcon())}catch{}",
|
||||
replace: "$&;try{$2||$1.push($self.chatBarIcon(arguments[0]))}catch{}",
|
||||
}
|
||||
},
|
||||
],
|
||||
|
|
Loading…
Reference in a new issue