fix img tags not always being rendered correctly
This commit is contained in:
parent
01031e33cb
commit
34c15b5221
2 changed files with 5 additions and 1 deletions
|
@ -53,7 +53,7 @@ const BIGEMOJI_REGEX = new RegExp(`^(${EMOJIBASE_REGEX.source})+$`, 'i');
|
||||||
|
|
||||||
const COLOR_REGEX = /^#[0-9a-fA-F]{6}$/;
|
const COLOR_REGEX = /^#[0-9a-fA-F]{6}$/;
|
||||||
|
|
||||||
const PERMITTED_URL_SCHEMES = ['http', 'https', 'ftp', 'mailto', 'magnet'];
|
export const PERMITTED_URL_SCHEMES = ['http', 'https', 'ftp', 'mailto', 'magnet'];
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Return true if the given string contains emoji
|
* Return true if the given string contains emoji
|
||||||
|
|
|
@ -29,6 +29,7 @@ import MatrixClientContext from "../../../contexts/MatrixClientContext";
|
||||||
import {Action} from "../../../dispatcher/actions";
|
import {Action} from "../../../dispatcher/actions";
|
||||||
import sanitizeHtml from "sanitize-html";
|
import sanitizeHtml from "sanitize-html";
|
||||||
import {UIFeature} from "../../../settings/UIFeature";
|
import {UIFeature} from "../../../settings/UIFeature";
|
||||||
|
import {PERMITTED_URL_SCHEMES} from "../../../HtmlUtils";
|
||||||
|
|
||||||
// This component does no cycle detection, simply because the only way to make such a cycle would be to
|
// This component does no cycle detection, simply because the only way to make such a cycle would be to
|
||||||
// craft event_id's, using a homeserver that generates predictable event IDs; even then the impact would
|
// craft event_id's, using a homeserver that generates predictable event IDs; even then the impact would
|
||||||
|
@ -106,6 +107,9 @@ export default class ReplyThread extends React.Component {
|
||||||
{
|
{
|
||||||
allowedTags: false, // false means allow everything
|
allowedTags: false, // false means allow everything
|
||||||
allowedAttributes: false,
|
allowedAttributes: false,
|
||||||
|
// we somehow can't allow all schemes, so we allow all that we
|
||||||
|
// know of and mxc (for img tags)
|
||||||
|
allowedSchemes: [...PERMITTED_URL_SCHEMES, 'mxc'],
|
||||||
exclusiveFilter: (frame) => frame.tag === "mx-reply",
|
exclusiveFilter: (frame) => frame.tag === "mx-reply",
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue