diff options
author | Chocobozzz <me@florianbigard.com> | 2023-03-10 12:01:21 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2023-03-10 15:45:52 +0100 |
commit | 3b504f6ed4e890bebb46d0481aba15b43050323a (patch) | |
tree | bbe4c1bc529fec28e0b46263ec92f7c2260ba65a /server/models/video/video-channel.ts | |
parent | 4899138ec5995075c3681ccbd9f6b163fb915991 (diff) | |
download | PeerTube-3b504f6ed4e890bebb46d0481aba15b43050323a.tar.gz PeerTube-3b504f6ed4e890bebb46d0481aba15b43050323a.tar.zst PeerTube-3b504f6ed4e890bebb46d0481aba15b43050323a.zip |
Add ability for plugins to alter video jsonld
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, |