Fix message view inflation on Safari when custom separators set

This commit is contained in:
Cohee
2023-07-01 17:22:49 +03:00
parent 309a2ed564
commit 59b92d4356

View File

@@ -18,6 +18,7 @@ export const markdownExclusionExt = () => {
const escapedExclusions = combinedExcludeString const escapedExclusions = combinedExcludeString
.split(",") .split(",")
.filter((element) => element.length > 0)
.map((element) => `(${element.split('').map((char) => `\\${char}`).join('')})`); .map((element) => `(${element.split('').map((char) => `\\${char}`).join('')})`);