diff options
author | Chocobozzz <me@florianbigard.com> | 2020-08-24 16:21:16 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2020-08-24 16:21:16 +0200 |
commit | a293ac71d87fb44fb9c545d2a3f89a5c01850096 (patch) | |
tree | 71070d515724e76e353c470e282d743f7a950144 /server | |
parent | de97d62109c5ab668982908a8060d1c07150216e (diff) | |
download | PeerTube-a293ac71d87fb44fb9c545d2a3f89a5c01850096.tar.gz PeerTube-a293ac71d87fb44fb9c545d2a3f89a5c01850096.tar.zst PeerTube-a293ac71d87fb44fb9c545d2a3f89a5c01850096.zip |
Fix lint
Diffstat (limited to 'server')
-rw-r--r-- | server/models/video/video.ts | 4 |
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' |
97 | import { MThumbnail } from '../../types/models/video/thumbnail' | 97 | import { MThumbnail } from '../../types/models/video/thumbnail' |
98 | import { MVideoFile, MVideoFileStreamingPlaylistVideo, MVideoFileRedundanciesOpt } from '../../types/models/video/video-file' | 98 | import { MVideoFile, MVideoFileRedundanciesOpt, MVideoFileStreamingPlaylistVideo } from '../../types/models/video/video-file' |
99 | import { VideoAbuseModel } from '../abuse/video-abuse' | 99 | import { VideoAbuseModel } from '../abuse/video-abuse' |
100 | import { AccountModel } from '../account/account' | 100 | import { AccountModel } from '../account/account' |
101 | import { AccountVideoRateModel } from '../account/account-video-rate' | 101 | import { AccountVideoRateModel } from '../account/account-video-rate' |
@@ -127,7 +127,6 @@ import { VideoShareModel } from './video-share' | |||
127 | import { VideoStreamingPlaylistModel } from './video-streaming-playlist' | 127 | import { VideoStreamingPlaylistModel } from './video-streaming-playlist' |
128 | import { VideoTagModel } from './video-tag' | 128 | import { VideoTagModel } from './video-tag' |
129 | import { VideoViewModel } from './video-view' | 129 | import { VideoViewModel } from './video-view' |
130 | import { stream } from 'winston' | ||
131 | 130 | ||
132 | export enum ScopeNames { | 131 | export 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 | ||