diff --git a/server/controllers/api/videos/comment.ts b/server/controllers/api/videos/comment.ts index ccd76c093..020d0b104 100644 --- a/server/controllers/api/videos/comment.ts +++ b/server/controllers/api/videos/comment.ts @@ -160,6 +160,10 @@ async function listVideoThreadComments (req: express.Request, res: express.Respo } } + if (resultList.data.length === 0) { + return res.sendStatus(404) + } + return res.json(buildFormattedCommentTree(resultList)) }