fix(SendTimestamps): Do not add to ReviewDB input
This commit is contained in:
parent
df214e1e93
commit
f66e35b658
@ -124,7 +124,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{}",
|
||||
}
|
||||
},
|
||||
],
|
||||
@ -139,7 +139,9 @@ export default definePlugin({
|
||||
removePreSendListener(this.listener);
|
||||
},
|
||||
|
||||
chatBarIcon() {
|
||||
chatBarIcon(chatBoxProps: { type: { analyticsName: string; }; }) {
|
||||
if (chatBoxProps.type.analyticsName !== "normal") return null;
|
||||
|
||||
return (
|
||||
<Tooltip text="Insert Timestamp">
|
||||
{({ onMouseEnter, onMouseLeave }) => (
|
||||
|
Loading…
Reference in New Issue
Block a user