diff options
-rw-r--r-- | server/lib/activitypub/process/process-delete.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/lib/activitypub/process/process-delete.ts b/server/lib/activitypub/process/process-delete.ts index 20214246c..44f6a87b0 100644 --- a/server/lib/activitypub/process/process-delete.ts +++ b/server/lib/activitypub/process/process-delete.ts | |||
@@ -130,7 +130,7 @@ async function processDeleteVideoChannel (videoChannelToRemove: MChannelActor) { | |||
130 | 130 | ||
131 | function processDeleteVideoComment (byActor: MActorSignature, videoComment: MCommentOwnerVideo, activity: ActivityDelete) { | 131 | function processDeleteVideoComment (byActor: MActorSignature, videoComment: MCommentOwnerVideo, activity: ActivityDelete) { |
132 | // Already deleted | 132 | // Already deleted |
133 | if (videoComment.isDeleted()) return | 133 | if (videoComment.isDeleted()) return Promise.resolve() |
134 | 134 | ||
135 | logger.debug('Removing remote video comment "%s".', videoComment.url) | 135 | logger.debug('Removing remote video comment "%s".', videoComment.url) |
136 | 136 | ||