mirror of https://github.com/vector-im/riot-web
Fix typing avatars displaying "me"
parent
937f13d578
commit
d97fc0a99a
|
@ -186,7 +186,7 @@ module.exports = React.createClass({
|
||||||
},
|
},
|
||||||
|
|
||||||
_renderTypingIndicatorAvatars: function(limit) {
|
_renderTypingIndicatorAvatars: function(limit) {
|
||||||
let users = WhoIsTyping.usersTyping(this.props.room);
|
let users = WhoIsTyping.usersTypingApartFromMe(this.props.room);
|
||||||
|
|
||||||
let othersCount = Math.max(users.length - limit, 0);
|
let othersCount = Math.max(users.length - limit, 0);
|
||||||
users = users.slice(0, limit);
|
users = users.slice(0, limit);
|
||||||
|
|
Loading…
Reference in New Issue