only status posts in conversation
This commit is contained in:
parent
a6b4b84fa0
commit
25e3f203e6
1 changed files with 2 additions and 1 deletions
|
@ -135,7 +135,8 @@ function(HostApp, Core, APICalls, URI) {
|
||||||
var status = statuses[i];
|
var status = statuses[i];
|
||||||
|
|
||||||
// don't load if it is already there
|
// don't load if it is already there
|
||||||
if(!document.getElementById("post-" + status.post + "-" + _this.action)) {
|
var not_already_there = !document.getElementById("post-" + status.post + "-" + _this.action);
|
||||||
|
if(not_already_there && status.type.startsWith("https://tent.io/types/status/v0")) {
|
||||||
_this.append(status.post, status.entity ,node, true);
|
_this.append(status.post, status.entity ,node, true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue