mirror of https://github.com/Chocobozzz/PeerTube
Fix video upload with big preview
parent
8484599294
commit
293074ae79
|
@ -2,7 +2,11 @@ import express from 'express'
|
|||
import { getResumableUploadPath } from '@server/helpers/upload'
|
||||
import { Uploadx } from '@uploadx/core'
|
||||
|
||||
const uploadx = new Uploadx({ directory: getResumableUploadPath() })
|
||||
const uploadx = new Uploadx({
|
||||
directory: getResumableUploadPath(),
|
||||
// Could be big with thumbnails/previews
|
||||
maxMetadataSize: '10MB'
|
||||
})
|
||||
uploadx.getUserId = (_, res: express.Response) => res.locals.oauth?.token.user.id
|
||||
|
||||
export {
|
||||
|
|
Loading…
Reference in New Issue