1
0
Fork 0

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

@ -4,7 +4,6 @@ function regexpCapture (str: string, regex: RegExp, maxIterations = 100) {
let m: RegExpExecArray
let i = 0
// tslint:disable:no-conditional-assignment
while ((m = regex.exec(str)) !== null && i < maxIterations) {
// This is necessary to avoid infinite loops with zero-width matches
if (m.index === regex.lastIndex) {

View File

@ -56,7 +56,6 @@ async function up (utils: {
}
{
// tslint:disable:no-trailing-whitespace
const query1 =
`
INSERT INTO "actor"

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