fix custom emoji not shown in statuses

master
Ondřej Hruška 7 years ago
parent 9a5418942c
commit 74e4fc8f8a
No known key found for this signature in database
GPG Key ID: 2C5FD5035250423D
  1. 6
      app/javascript/glitch/components/status/content.js

@ -131,11 +131,9 @@ export default class StatusContent extends React.PureComponent {
this.state.hidden
);
const content = { __html: emojify(status.get('content')) };
const content = { __html: status.get('contentHtml') };
const spoilerContent = {
__html: emojify(escapeTextContentForBrowser(
status.get('spoiler_text', '')
)),
__html: status.get('spoilerHtml'),
};
const directionStyle = { direction: 'ltr' };
const classNames = classnames('status__content', {

Loading…
Cancel
Save