aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--server/controllers/api/videos/comment.ts4
1 files changed, 4 insertions, 0 deletions
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
160 } 160 }
161 } 161 }
162 162
163 if (resultList.data.length === 0) {
164 return res.sendStatus(404)
165 }
166
163 return res.json(buildFormattedCommentTree(resultList)) 167 return res.json(buildFormattedCommentTree(resultList))
164} 168}
165 169