fixed deleting
This commit is contained in:
parent
e8392eff7a
commit
61a2199fe3
4 changed files with 14 additions and 7 deletions
|
@ -43,7 +43,9 @@ function(HostApp, Timeline, URI, APICalls, Core) {
|
|||
var status = statuses.posts[i];
|
||||
var name = bungloo.cache.profiles[status.entity] ? bungloo.cache.profiles[status.entity].name : status.entity
|
||||
|
||||
if(!append) HostApp.notificateUserAboutMention(status.content.text, name, status.id, status.entity);
|
||||
if(!append && status.type.startsWith("https://tent.io/types/status/v0#")) {
|
||||
HostApp.notificateUserAboutMention(status.content.text, name, status.id, status.entity);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue