mirror of
https://github.com/vector-im/element-web.git
synced 2026-05-10 22:56:27 +02:00
Fix empty lightbox when there is no avatarUrl
Signed-off-by: Aaron Raimist <aaron@raim.ist>
This commit is contained in:
parent
0cce912cf6
commit
53947bee35
@ -137,6 +137,11 @@ module.exports = React.createClass({
|
||||
const avatarUrl = this.props.room.getAvatarUrl(
|
||||
MatrixClientPeg.get().getHomeserverUrl(),
|
||||
null, null, null, false);
|
||||
|
||||
if (!avatarUrl) {
|
||||
return;
|
||||
}
|
||||
|
||||
const ImageView = sdk.getComponent("elements.ImageView");
|
||||
const params = {
|
||||
src: avatarUrl,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user