forked from mystiq/hydrogen-web
Merge pull request #16 from vector-im/bwindels/dontcrashoninvalidimg
Don't crash on m.image without url
This commit is contained in:
commit
4f5609f7c1
1 changed files with 8 additions and 2 deletions
|
@ -27,12 +27,18 @@ export class ImageTile extends MessageTile {
|
|||
|
||||
get thumbnailUrl() {
|
||||
const mxcUrl = this._getContent().url;
|
||||
return this._room.mxcUrlThumbnail(mxcUrl, this.thumbnailWidth, this.thumbnailHeight, "scale");
|
||||
if (mxcUrl) {
|
||||
return this._room.mxcUrlThumbnail(mxcUrl, this.thumbnailWidth, this.thumbnailHeight, "scale");
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
get url() {
|
||||
const mxcUrl = this._getContent().url;
|
||||
return this._room.mxcUrl(mxcUrl);
|
||||
if (mxcUrl) {
|
||||
return this._room.mxcUrl(mxcUrl);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
_scaleFactor() {
|
||||
|
|
Loading…
Reference in a new issue