fix roomavatars on FF

pull/21833/head
Matthew Hodgson 2016-03-03 16:16:40 +00:00
parent 27fea6bc95
commit 05a3dab528
1 changed files with 1 additions and 1 deletions

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 != "");
});
},