fixed deleting
This commit is contained in:
parent
e8392eff7a
commit
61a2199fe3
4 changed files with 14 additions and 7 deletions
|
@ -77,7 +77,7 @@ function(Core, APICalls, HostApp, URI) {
|
|||
this.since_time = status.received_at;
|
||||
}
|
||||
|
||||
if (status.type == "https://tent.io/types/status/v0#" || status.type == "https://tent.io/types/status/v0#reply") {
|
||||
if (status.type.startsWith("https://tent.io/types/status/v0#")) {
|
||||
|
||||
var new_node = this.getStatusDOMElement(status);
|
||||
|
||||
|
@ -97,9 +97,9 @@ function(Core, APICalls, HostApp, URI) {
|
|||
}
|
||||
}
|
||||
|
||||
} else if (status.type == "https://tent.io/types/post/delete/v0.1.0") {
|
||||
} else if (status.type == "https://tent.io/types/delete/v0#") {
|
||||
|
||||
HostApp.notificateViewsAboutDeletedPost(status.content.id, status.entity);
|
||||
HostApp.notificateViewsAboutDeletedPost(status.refs[0].post, status.entity);
|
||||
|
||||
} else if (status.type == "https://tent.io/types/post/repost/v0.1.0") {
|
||||
|
||||
|
|
Reference in a new issue