diff --git a/src/services/status_parser/status_parser.js b/src/services/status_parser/status_parser.js index 0eb3e75f..f1d113dd 100644 --- a/src/services/status_parser/status_parser.js +++ b/src/services/status_parser/status_parser.js @@ -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/) }) }