Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
Šimon Brandner 2021-07-13 09:16:53 +02:00
parent 8f8377a71c
commit 5fc35565df
No known key found for this signature in database
GPG key ID: 9760693FDD98A790

View file

@ -113,13 +113,14 @@ export default class MImageBody extends React.Component<IProps, IState> {
return; return;
} }
const content = this.props.mxEvent.getContent() as IMediaEventContent; const content = this.props.mxEvent.getContent<IMediaEventContent>();
const httpUrl = this.getContentUrl(); const httpUrl = this.getContentUrl();
const params: ComponentProps<typeof ImageView> = { const params: ComponentProps<typeof ImageView> = {
src: httpUrl, src: httpUrl,
name: content.body?.length > 0 ? content.body : _t('Attachment'), name: content.body?.length > 0 ? content.body : _t('Attachment'),
mxEvent: this.props.mxEvent, mxEvent: this.props.mxEvent,
permalinkCreator: this.props.permalinkCreator, permalinkCreator: this.props.permalinkCreator,
onFinished: () => {},
}; };
if (content.info) { if (content.info) {