You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-07 10:46:24 +03:00
Fix display of image messages that lack thumbnails
Fixes https://github.com/vector-im/element-web/issues/18175
This commit is contained in:
@@ -67,6 +67,7 @@ export class MediaEventHelper implements IDestroyable {
|
||||
private prepareThumbnailUrl = async () => {
|
||||
if (this.media.isEncrypted) {
|
||||
const blob = await this.thumbnailBlob.value;
|
||||
if (blob === null) return null;
|
||||
return URL.createObjectURL(blob);
|
||||
} else {
|
||||
return this.media.thumbnailHttp;
|
||||
|
||||
Reference in New Issue
Block a user