aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2021-10-08 11:22:22 +0200
committerChocobozzz <me@florianbigard.com>2021-10-08 11:22:22 +0200
commit9da443f374d9f845331435ce3423ad16e5ac331d (patch)
treef3bb20454787192ce0f64e8f1f9909b58bab2ab7 /shared
parentb0268e27e1584d7afcaa3411df454c68130787be (diff)
downloadPeerTube-9da443f374d9f845331435ce3423ad16e5ac331d.tar.gz
PeerTube-9da443f374d9f845331435ce3423ad16e5ac331d.tar.zst
PeerTube-9da443f374d9f845331435ce3423ad16e5ac331d.zip
Remove unused comments
Diffstat (limited to 'shared')
-rw-r--r--shared/extra-utils/miscs/sql-command.ts1
1 files changed, 0 insertions, 1 deletions
diff --git a/shared/extra-utils/miscs/sql-command.ts b/shared/extra-utils/miscs/sql-command.ts
index 80c8cd271..bedb3349b 100644
--- a/shared/extra-utils/miscs/sql-command.ts
+++ b/shared/extra-utils/miscs/sql-command.ts
@@ -50,7 +50,6 @@ export class SQLCommand extends AbstractCommand {
50 async countVideoViewsOf (uuid: string) { 50 async countVideoViewsOf (uuid: string) {
51 const seq = this.getSequelize() 51 const seq = this.getSequelize()
52 52
53 // tslint:disable
54 const query = 'SELECT SUM("videoView"."views") AS "total" FROM "videoView" ' + 53 const query = 'SELECT SUM("videoView"."views") AS "total" FROM "videoView" ' +
55 `INNER JOIN "video" ON "video"."id" = "videoView"."videoId" WHERE "video"."uuid" = '${uuid}'` 54 `INNER JOIN "video" ON "video"."id" = "videoView"."videoId" WHERE "video"."uuid" = '${uuid}'`
56 55