Fix add comment in threads with deleted comments

This commit is contained in:
Chocobozzz 2020-03-20 14:43:12 +01:00
parent 5db4545cd2
commit 6cb5564490
No known key found for this signature in database
GPG key ID: 583A612D890159BE
5 changed files with 13 additions and 5 deletions

View file

@ -32,6 +32,8 @@ function getVideoCommentAudience (
// Send to actors we reply to
for (const parentComment of threadParentComments) {
if (parentComment.isDeleted()) continue
cc.push(parentComment.Account.Actor.url)
}