diff options
author | Chocobozzz <me@florianbigard.com> | 2019-04-24 09:56:25 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2019-04-24 16:26:22 +0200 |
commit | 2fb5b3a55aeebcc77f4b3a0c029bbf0738ef0063 (patch) | |
tree | 3f03677870548c648070ac138a2b5ca36ee8fbeb /server/helpers/requests.ts | |
parent | b876eaf11a1ed9683664d94767ca684ba5b77753 (diff) | |
download | PeerTube-2fb5b3a55aeebcc77f4b3a0c029bbf0738ef0063.tar.gz PeerTube-2fb5b3a55aeebcc77f4b3a0c029bbf0738ef0063.tar.zst PeerTube-2fb5b3a55aeebcc77f4b3a0c029bbf0738ef0063.zip |
Relax videos list thumbnail api join
Diffstat (limited to 'server/helpers/requests.ts')
-rw-r--r-- | server/helpers/requests.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/helpers/requests.ts b/server/helpers/requests.ts index 8dda6c039..2e30c94a1 100644 --- a/server/helpers/requests.ts +++ b/server/helpers/requests.ts | |||
@@ -52,7 +52,7 @@ async function downloadImage (url: string, destDir: string, destName: string, si | |||
52 | const destPath = join(destDir, destName) | 52 | const destPath = join(destDir, destName) |
53 | 53 | ||
54 | try { | 54 | try { |
55 | await processImage({ path: tmpPath }, destPath, size) | 55 | await processImage(tmpPath, destPath, size) |
56 | } catch (err) { | 56 | } catch (err) { |
57 | await remove(tmpPath) | 57 | await remove(tmpPath) |
58 | 58 | ||