diff --git a/src/components/views/avatars/RoomAvatar.js b/src/components/views/avatars/RoomAvatar.js index 3bae15bd15..129c68ff1b 100644 --- a/src/components/views/avatars/RoomAvatar.js +++ b/src/components/views/avatars/RoomAvatar.js @@ -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 != ""); }); },