Fix broken MessageLogger patches

This commit is contained in:
Nuckyz 2023-09-12 04:28:21 -03:00
parent 7364776715
commit 09f65b401e
No known key found for this signature in database
GPG key ID: 440BF8296E1C4AD9

View file

@ -326,14 +326,14 @@ export default definePlugin({
{
// Attachment renderer
// Module 96063
find: "[\"className\",\"attachment\",\"inlineMedia\"",
find: "().removeAttachmentHoverButton",
replacement: [
{
match: /((\w)\.className,\w=\2\.attachment),/,
replace: "$1,deleted=$2.attachment?.deleted,"
},
{
match: /\["className","attachment","inlineMedia".+?className:/,
match: /\["className","attachment".+?className:/,
replace: "$& (deleted ? 'messagelogger-deleted-attachment ' : '') +"
}
]