Merge pull request #3118 from vector-im/dbkr/network_dropdown_mxc

Allow mxc: URLs for icons in the NetworkDropdown
pull/3125/head
Richard van der Hoff 2017-02-02 19:53:46 +00:00 committed by GitHub
commit a64e1cb936
1 changed files with 4 additions and 1 deletions

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';
}