fix of deleting user mention from mentions to reply

This commit is contained in:
Simon Grim 2015-08-12 16:24:09 +05:00
parent 7069b01eeb
commit 48a5292249

View File

@ -138,11 +138,10 @@ function postToElem(post, kind, promoted) {
if (username !== defaultScreenName) {
if (msg.mentions.indexOf(username) === -1)
msg.mentions.splice(0, 0, username);
} else {
var i = msg.mentions.indexOf(defaultScreenName);
if (i !== -1)
msg.mentions.splice(i, 1);
}
for (var i = msg.mentions.indexOf(defaultScreenName); i !== -1; i = msg.mentions.indexOf(defaultScreenName))
msg.mentions.splice(i, 1);
if (msg.mentions.length)
var replyTo = '@' + msg.mentions.join(' @') + ' ';
else