diff options
author | Chocobozzz <me@florianbigard.com> | 2020-01-08 15:11:38 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2020-01-08 15:44:41 +0100 |
commit | e612209767ebe1deb0af7688c96b7f979bb52b44 (patch) | |
tree | c5be9241e41a098f5452fe3cd187e2305d8047e3 /server/lib/activitypub | |
parent | 440d39c52d4efb878b6a2e21584d6b8f52072f27 (diff) | |
download | PeerTube-e612209767ebe1deb0af7688c96b7f979bb52b44.tar.gz PeerTube-e612209767ebe1deb0af7688c96b7f979bb52b44.tar.zst PeerTube-e612209767ebe1deb0af7688c96b7f979bb52b44.zip |
Try to fix subscriptions inconsistencies
Diffstat (limited to 'server/lib/activitypub')
-rw-r--r-- | server/lib/activitypub/send/send-update.ts | 2 | ||||
-rw-r--r-- | server/lib/activitypub/videos.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/server/lib/activitypub/send/send-update.ts b/server/lib/activitypub/send/send-update.ts index cb14b8dbf..9c76671b5 100644 --- a/server/lib/activitypub/send/send-update.ts +++ b/server/lib/activitypub/send/send-update.ts | |||
@@ -35,7 +35,7 @@ async function sendUpdateVideo (videoArg: MVideoAPWithoutCaption, t: Transaction | |||
35 | 35 | ||
36 | // Needed to build the AP object | 36 | // Needed to build the AP object |
37 | if (!video.VideoCaptions) { | 37 | if (!video.VideoCaptions) { |
38 | video.VideoCaptions = await video.$get('VideoCaptions', { transaction: t }) as VideoCaptionModel[] | 38 | video.VideoCaptions = await video.$get('VideoCaptions', { transaction: t }) |
39 | } | 39 | } |
40 | 40 | ||
41 | const videoObject = video.toActivityPubObject() | 41 | const videoObject = video.toActivityPubObject() |
diff --git a/server/lib/activitypub/videos.ts b/server/lib/activitypub/videos.ts index 2fb1f8d49..ade93150f 100644 --- a/server/lib/activitypub/videos.ts +++ b/server/lib/activitypub/videos.ts | |||
@@ -86,7 +86,7 @@ async function federateVideoIfNeeded (videoArg: MVideoAPWithoutCaption, isNewVid | |||
86 | video.VideoCaptions = await video.$get('VideoCaptions', { | 86 | video.VideoCaptions = await video.$get('VideoCaptions', { |
87 | attributes: [ 'language' ], | 87 | attributes: [ 'language' ], |
88 | transaction | 88 | transaction |
89 | }) as VideoCaptionModel[] | 89 | }) |
90 | } | 90 | } |
91 | 91 | ||
92 | if (isNewVideo) { | 92 | if (isNewVideo) { |