diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-07-12 14:58:34 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-07-12 14:58:34 +0200 |
commit | 0b7db72af30403fb6c7d906a4c239a5519cf934d (patch) | |
tree | f37ebff2446f68d65aab751679d2a18a4be885ab /server/lib/cache/videos-preview-cache.ts | |
parent | d38309c345e2619bdfcc618d723d742fd7d5e655 (diff) | |
download | PeerTube-0b7db72af30403fb6c7d906a4c239a5519cf934d.tar.gz PeerTube-0b7db72af30403fb6c7d906a4c239a5519cf934d.tar.zst PeerTube-0b7db72af30403fb6c7d906a4c239a5519cf934d.zip |
Fix lint
Diffstat (limited to 'server/lib/cache/videos-preview-cache.ts')
-rw-r--r-- | server/lib/cache/videos-preview-cache.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/server/lib/cache/videos-preview-cache.ts b/server/lib/cache/videos-preview-cache.ts index 9d365e496..09e2e9a0d 100644 --- a/server/lib/cache/videos-preview-cache.ts +++ b/server/lib/cache/videos-preview-cache.ts | |||
@@ -1,11 +1,10 @@ | |||
1 | import * as request from 'request' | ||
2 | import * as asyncLRU from 'async-lru' | 1 | import * as asyncLRU from 'async-lru' |
3 | import { join } from 'path' | 2 | import { join } from 'path' |
4 | import { createWriteStream } from 'fs' | 3 | import { createWriteStream } from 'fs' |
5 | import * as Promise from 'bluebird' | 4 | import * as Promise from 'bluebird' |
6 | 5 | ||
7 | import { database as db, CONFIG, CACHE } from '../../initializers' | 6 | import { database as db, CONFIG, CACHE } from '../../initializers' |
8 | import { logger, writeFilePromise, unlinkPromise } from '../../helpers' | 7 | import { logger, unlinkPromise } from '../../helpers' |
9 | import { VideoInstance } from '../../models' | 8 | import { VideoInstance } from '../../models' |
10 | import { fetchRemotePreview } from '../../lib' | 9 | import { fetchRemotePreview } from '../../lib' |
11 | 10 | ||