diff options
author | Chocobozzz <me@florianbigard.com> | 2020-03-10 16:37:25 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2020-03-10 16:37:25 +0100 |
commit | ac940348cdb6ea6d86a80e37b464b754826cb9ad (patch) | |
tree | 2e6768319d827f59cf26cc58ac3eab4524f7771e /server/lib/activitypub | |
parent | 482fa503e545e00252e25eee7b3e0f7d421cf9d4 (diff) | |
download | PeerTube-ac940348cdb6ea6d86a80e37b464b754826cb9ad.tar.gz PeerTube-ac940348cdb6ea6d86a80e37b464b754826cb9ad.tar.zst PeerTube-ac940348cdb6ea6d86a80e37b464b754826cb9ad.zip |
Fix lint
Diffstat (limited to 'server/lib/activitypub')
-rw-r--r-- | server/lib/activitypub/videos.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/server/lib/activitypub/videos.ts b/server/lib/activitypub/videos.ts index 452e43c8c..62f589272 100644 --- a/server/lib/activitypub/videos.ts +++ b/server/lib/activitypub/videos.ts | |||
@@ -9,13 +9,12 @@ import { | |||
9 | ActivityPlaylistUrlObject, | 9 | ActivityPlaylistUrlObject, |
10 | ActivityTagObject, | 10 | ActivityTagObject, |
11 | ActivityUrlObject, | 11 | ActivityUrlObject, |
12 | ActivityVideoFileMetadataObject, | ||
13 | ActivityVideoUrlObject, | 12 | ActivityVideoUrlObject, |
14 | VideoState | 13 | VideoState |
15 | } from '../../../shared/index' | 14 | } from '../../../shared/index' |
16 | import { VideoTorrentObject } from '../../../shared/models/activitypub/objects' | 15 | import { VideoTorrentObject } from '../../../shared/models/activitypub/objects' |
17 | import { VideoPrivacy } from '../../../shared/models/videos' | 16 | import { VideoPrivacy } from '../../../shared/models/videos' |
18 | import { sanitizeAndCheckVideoTorrentObject, isAPVideoFileMetadataObject } from '../../helpers/custom-validators/activitypub/videos' | 17 | import { isAPVideoFileMetadataObject, sanitizeAndCheckVideoTorrentObject } from '../../helpers/custom-validators/activitypub/videos' |
19 | import { isVideoFileInfoHashValid } from '../../helpers/custom-validators/videos' | 18 | import { isVideoFileInfoHashValid } from '../../helpers/custom-validators/videos' |
20 | import { deleteNonExistingModels, resetSequelizeInstance, retryTransactionWrapper } from '../../helpers/database-utils' | 19 | import { deleteNonExistingModels, resetSequelizeInstance, retryTransactionWrapper } from '../../helpers/database-utils' |
21 | import { logger } from '../../helpers/logger' | 20 | import { logger } from '../../helpers/logger' |