1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-10 09:22:25 +03:00

fix roomavatars on FF

This commit is contained in:
Matthew Hodgson
2016-03-03 16:16:40 +00:00
parent 27fea6bc95
commit 05a3dab528

View File

@@ -65,7 +65,7 @@ module.exports = React.createClass({
this.getOneToOneAvatar(props),
this.getFallbackAvatar(props) // lowest priority
].filter(function(url) {
return url != null;
return (url != null && url != "");
});
},