Browse Source

Fix creating remote tracker URLs on video creation

Chocobozzz 1 month ago
parent
commit
3f8454ce63
1 changed files with 1 additions and 0 deletions
  1. 1 0
      server/core/lib/activitypub/videos/shared/creator.ts

+ 1 - 0
server/core/lib/activitypub/videos/shared/creator.ts

@@ -22,6 +22,7 @@ export class APVideoCreator extends APVideoAbstractBuilder {
 
     const channelActor = await this.getOrCreateVideoChannelFromVideoObject()
     const channel = channelActor.VideoChannel
+    channel.Actor = channelActor
 
     const videoData = getVideoAttributesFromObject(channel, this.videoObject, this.videoObject.to)
     const video = VideoModel.build({ ...videoData, likes: 0, dislikes: 0 }) as MVideoThumbnail