Fix typing avatars displaying "me"
This commit is contained in:
parent
937f13d578
commit
d97fc0a99a
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue