Merge pull request #6456 from matrix-org/dbkr/fix_images_without_thumbnail

Fix display of image messages that lack thumbnails
This commit is contained in:
David Baker
2021-07-22 22:55:58 +01:00
committed by GitHub

View File

@@ -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;