diff options
Diffstat (limited to 'server/lib/activitypub')
-rw-r--r-- | server/lib/activitypub/process/process-view.ts | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/server/lib/activitypub/process/process-view.ts b/server/lib/activitypub/process/process-view.ts index efceb21a2..84697673b 100644 --- a/server/lib/activitypub/process/process-view.ts +++ b/server/lib/activitypub/process/process-view.ts | |||
@@ -31,6 +31,10 @@ async function processCreateView (activity: ActivityView | ActivityCreate, byAct | |||
31 | } | 31 | } |
32 | const { video } = await getOrCreateVideoAndAccountAndChannel(options) | 32 | const { video } = await getOrCreateVideoAndAccountAndChannel(options) |
33 | 33 | ||
34 | if (!video.isLive) { | ||
35 | await Redis.Instance.addVideoView(video.id) | ||
36 | } | ||
37 | |||
34 | if (video.isOwned()) { | 38 | if (video.isOwned()) { |
35 | // Our live manager will increment the counter and send the view to followers | 39 | // Our live manager will increment the counter and send the view to followers |
36 | if (video.isLive) { | 40 | if (video.isLive) { |
@@ -38,8 +42,6 @@ async function processCreateView (activity: ActivityView | ActivityCreate, byAct | |||
38 | return | 42 | return |
39 | } | 43 | } |
40 | 44 | ||
41 | await Redis.Instance.addVideoView(video.id) | ||
42 | |||
43 | // Forward the view but don't resend the activity to the sender | 45 | // Forward the view but don't resend the activity to the sender |
44 | const exceptions = [ byActor ] | 46 | const exceptions = [ byActor ] |
45 | await forwardVideoRelatedActivity(activity, undefined, exceptions, video) | 47 | await forwardVideoRelatedActivity(activity, undefined, exceptions, video) |