fixed #91
This commit is contained in:
parent
f4443c3289
commit
5888236aaf
1 changed files with 5 additions and 3 deletions
|
@ -56,9 +56,11 @@ function(HostApp, Core, Paths, URI, Cache) {
|
||||||
_this.appendMentioned(id, entity, dom_element);
|
_this.appendMentioned(id, entity, dom_element);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
for (var i = 0; i < status.mentions.length; i++) {
|
||||||
if (status.mentions && status.mentions.length > 0 && status.mentions[0].post) {
|
var mention = status.mentions[i];
|
||||||
_this.append(status.mentions[0].post, status.mentions[0].entity, dom_element);
|
if(mention.post) {
|
||||||
|
_this.append(mention.post, mention.entity, dom_element);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in a new issue