use const for blurhash field

This commit is contained in:
Michael Telatynski 2021-05-21 21:19:41 +01:00
parent 254697644e
commit dbca9b4625
2 changed files with 3 additions and 2 deletions

View file

@ -30,6 +30,7 @@ import InlineSpinner from '../elements/InlineSpinner';
import {replaceableComponent} from "../../../utils/replaceableComponent";
import {mediaFromContent} from "../../../customisations/Media";
import BlurhashPlaceholder from "../elements/BlurhashPlaceholder";
import {BLURHASH_FIELD} from "../../../ContentMessages";
@replaceableComponent("views.messages.MImageBody")
export default class MImageBody extends React.Component {
@ -440,7 +441,7 @@ export default class MImageBody extends React.Component {
// Overidden by MStickerBody
getPlaceholder(width, height) {
const blurhash = this.props.mxEvent.getContent().info['xyz.amorgan.blurhash'];
const blurhash = this.props.mxEvent.getContent().info[BLURHASH_FIELD];
if (!blurhash) return null;
return <BlurhashPlaceholder blurhash={blurhash} width={width} height={height} />;
}