aboutsummaryrefslogtreecommitdiffhomepage
path: root/server
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2020-08-24 16:21:16 +0200
committerChocobozzz <me@florianbigard.com>2020-08-24 16:21:16 +0200
commita293ac71d87fb44fb9c545d2a3f89a5c01850096 (patch)
tree71070d515724e76e353c470e282d743f7a950144 /server
parentde97d62109c5ab668982908a8060d1c07150216e (diff)
downloadPeerTube-a293ac71d87fb44fb9c545d2a3f89a5c01850096.tar.gz
PeerTube-a293ac71d87fb44fb9c545d2a3f89a5c01850096.tar.zst
PeerTube-a293ac71d87fb44fb9c545d2a3f89a5c01850096.zip
Fix lint
Diffstat (limited to 'server')
-rw-r--r--server/models/video/video.ts4
1 files changed, 1 insertions, 3 deletions
diff --git a/server/models/video/video.ts b/server/models/video/video.ts
index 334d768c9..410d71cb3 100644
--- a/server/models/video/video.ts
+++ b/server/models/video/video.ts
@@ -95,7 +95,7 @@ import {
95 MVideoWithRights 95 MVideoWithRights
96} from '../../types/models' 96} from '../../types/models'
97import { MThumbnail } from '../../types/models/video/thumbnail' 97import { MThumbnail } from '../../types/models/video/thumbnail'
98import { MVideoFile, MVideoFileStreamingPlaylistVideo, MVideoFileRedundanciesOpt } from '../../types/models/video/video-file' 98import { MVideoFile, MVideoFileRedundanciesOpt, MVideoFileStreamingPlaylistVideo } from '../../types/models/video/video-file'
99import { VideoAbuseModel } from '../abuse/video-abuse' 99import { VideoAbuseModel } from '../abuse/video-abuse'
100import { AccountModel } from '../account/account' 100import { AccountModel } from '../account/account'
101import { AccountVideoRateModel } from '../account/account-video-rate' 101import { AccountVideoRateModel } from '../account/account-video-rate'
@@ -127,7 +127,6 @@ import { VideoShareModel } from './video-share'
127import { VideoStreamingPlaylistModel } from './video-streaming-playlist' 127import { VideoStreamingPlaylistModel } from './video-streaming-playlist'
128import { VideoTagModel } from './video-tag' 128import { VideoTagModel } from './video-tag'
129import { VideoViewModel } from './video-view' 129import { VideoViewModel } from './video-view'
130import { stream } from 'winston'
131 130
132export enum ScopeNames { 131export enum ScopeNames {
133 AVAILABLE_FOR_LIST_IDS = 'AVAILABLE_FOR_LIST_IDS', 132 AVAILABLE_FOR_LIST_IDS = 'AVAILABLE_FOR_LIST_IDS',
@@ -1479,7 +1478,6 @@ export class VideoModel extends Model<VideoModel> {
1479 const thumbnailsDone = new Set<number>() 1478 const thumbnailsDone = new Set<number>()
1480 const historyDone = new Set<number>() 1479 const historyDone = new Set<number>()
1481 const videoFilesDone = new Set<number>() 1480 const videoFilesDone = new Set<number>()
1482 const videoStreamingPlaylistsDone = new Set<number>()
1483 1481
1484 const videos: VideoModel[] = [] 1482 const videos: VideoModel[] = []
1485 1483