]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - server/controllers/api/abuse.ts
Merge branch 'release/2.3.0' into develop
[github/Chocobozzz/PeerTube.git] / server / controllers / api / abuse.ts
index 38808021db33cff1b0f8ecc7cf9cd2713d8cffbb..04a0c06e33cf62c79b24238dbe02385287dcdbc8 100644 (file)
@@ -100,7 +100,7 @@ async function updateAbuse (req: express.Request, res: express.Response) {
     return abuse.save({ transaction: t })
   })
 
-  // Do not send the delete to other instances, we updated OUR copy of this video abuse
+  // Do not send the delete to other instances, we updated OUR copy of this abuse
 
   return res.type('json').status(204).end()
 }
@@ -112,7 +112,7 @@ async function deleteAbuse (req: express.Request, res: express.Response) {
     return abuse.destroy({ transaction: t })
   })
 
-  // Do not send the delete to other instances, we delete OUR copy of this video abuse
+  // Do not send the delete to other instances, we delete OUR copy of this abuse
 
   return res.type('json').status(204).end()
 }