forked from AkkomaGang/akkoma-fe
Fix compilation error.
This commit is contained in:
parent
05733b6bc9
commit
43eb9c022d
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ export const removeAttachmentLinks = (html) => {
|
|||
return sanitize(html, {
|
||||
allowedTags: false,
|
||||
allowedAttributes: false,
|
||||
exclusiveFilter: ({ tag, attribs: { class: klass } }) => tag === 'a' && klass.match(/attachment/)
|
||||
exclusiveFilter: ({ tag, attribs }) => tag === 'a' && attribs.class.match(/attachment/)
|
||||
})
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue