Fix video upload with big preview

This commit is contained in:
Chocobozzz
2021-12-17 15:49:52 +01:00
parent 8484599294
commit 293074ae79

View File

@@ -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 {