1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-07 10:46:24 +03:00

support directional content in pill member fake

This commit is contained in:
Bruno Windels
2018-08-02 17:09:18 +02:00
parent 4b96e01410
commit e1843601be

View File

@@ -187,6 +187,9 @@ const Pill = React.createClass({
getContent: () => { getContent: () => {
return {avatar_url: resp.avatar_url}; return {avatar_url: resp.avatar_url};
}, },
getDirectionalContent: function() {
return this.getContent();
}
}; };
this.setState({member}); this.setState({member});
}).catch((err) => { }).catch((err) => {