diff options
Diffstat (limited to 'server/controllers/api')
-rw-r--r-- | server/controllers/api/videos/comment.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/server/controllers/api/videos/comment.ts b/server/controllers/api/videos/comment.ts index 2dcb85ecf..45ff969d9 100644 --- a/server/controllers/api/videos/comment.ts +++ b/server/controllers/api/videos/comment.ts | |||
@@ -78,6 +78,7 @@ async function listVideoThreads (req: express.Request, res: express.Response) { | |||
78 | if (video.commentsEnabled === true) { | 78 | if (video.commentsEnabled === true) { |
79 | const apiOptions = await Hooks.wrapObject({ | 79 | const apiOptions = await Hooks.wrapObject({ |
80 | videoId: video.id, | 80 | videoId: video.id, |
81 | isVideoOwned: video.isOwned(), | ||
81 | start: req.query.start, | 82 | start: req.query.start, |
82 | count: req.query.count, | 83 | count: req.query.count, |
83 | sort: req.query.sort, | 84 | sort: req.query.sort, |
@@ -108,6 +109,7 @@ async function listVideoThreadComments (req: express.Request, res: express.Respo | |||
108 | if (video.commentsEnabled === true) { | 109 | if (video.commentsEnabled === true) { |
109 | const apiOptions = await Hooks.wrapObject({ | 110 | const apiOptions = await Hooks.wrapObject({ |
110 | videoId: video.id, | 111 | videoId: video.id, |
112 | isVideoOwned: video.isOwned(), | ||
111 | threadId: res.locals.videoCommentThread.id, | 113 | threadId: res.locals.videoCommentThread.id, |
112 | user | 114 | user |
113 | }, 'filter:api.video-thread-comments.list.params') | 115 | }, 'filter:api.video-thread-comments.list.params') |