diff options
Diffstat (limited to 'server/models/video/video-channel.ts')
-rw-r--r-- | server/models/video/video-channel.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/models/video/video-channel.ts b/server/models/video/video-channel.ts index b71f5a197..67fccab68 100644 --- a/server/models/video/video-channel.ts +++ b/server/models/video/video-channel.ts | |||
@@ -809,8 +809,8 @@ export class VideoChannelModel extends Model<Partial<AttributesOnly<VideoChannel | |||
809 | return Object.assign(actor, videoChannel) | 809 | return Object.assign(actor, videoChannel) |
810 | } | 810 | } |
811 | 811 | ||
812 | toActivityPubObject (this: MChannelAP): ActivityPubActor { | 812 | async toActivityPubObject (this: MChannelAP): Promise<ActivityPubActor> { |
813 | const obj = this.Actor.toActivityPubObject(this.name) | 813 | const obj = await this.Actor.toActivityPubObject(this.name) |
814 | 814 | ||
815 | return Object.assign(obj, { | 815 | return Object.assign(obj, { |
816 | summary: this.description, | 816 | summary: this.description, |