Merge pull request #6456 from matrix-org/dbkr/fix_images_without_thumbnail
Fix display of image messages that lack thumbnailspull/21833/head
commit
46646eed06
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue