Allow mxc: URLs for icons in the NetworkDropdown

For https://github.com/vector-im/riot-web/issues/3086
This commit is contained in:
David Baker 2017-02-02 19:35:36 +00:00
parent b137c82a7a
commit 3903954bf2

View File

@ -181,7 +181,10 @@ export default class NetworkDropdown extends React.Component {
span_class = 'mx_NetworkDropdown_menu_network';
} else {
key = server + '_inst_' + instance.instance_id;
icon = <img src={instance.icon || DEFAULT_ICON_URL} />;
const imgUrl = instance.icon ?
MatrixClientPeg.get().mxcUrlToHttp(instance.icon, 25, 25, 'crop', true) :
DEFAULT_ICON_URL;
icon = <img src={imgUrl} />;
name = instance.desc;
span_class = 'mx_NetworkDropdown_menu_network';
}