]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - shared/extra-utils/miscs/sql-command.ts
Update credits
[github/Chocobozzz/PeerTube.git] / shared / extra-utils / miscs / sql-command.ts
index 80c8cd2715552517b2ae5b883d97640086030a6c..bedb3349b4fd6b416389a45eae57eaed7415da96 100644 (file)
@@ -50,7 +50,6 @@ export class SQLCommand extends AbstractCommand {
   async countVideoViewsOf (uuid: string) {
     const seq = this.getSequelize()
 
-    // tslint:disable
     const query = 'SELECT SUM("videoView"."views") AS "total" FROM "videoView" ' +
       `INNER JOIN "video" ON "video"."id" = "videoView"."videoId" WHERE "video"."uuid" = '${uuid}'`