1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-05 19:42:24 +02:00

Remove unused comments

This commit is contained in:
Chocobozzz 2021-10-08 11:22:22 +02:00
parent 93a1e67f86
commit ab7b4f525b
No known key found for this signature in database
GPG key ID: 583A612D890159BE
3 changed files with 0 additions and 3 deletions

View 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}'`