Fix video upload with big preview
This commit is contained in:
parent
8484599294
commit
293074ae79
|
@ -2,7 +2,11 @@ import express from 'express'
|
||||||
import { getResumableUploadPath } from '@server/helpers/upload'
|
import { getResumableUploadPath } from '@server/helpers/upload'
|
||||||
import { Uploadx } from '@uploadx/core'
|
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
|
uploadx.getUserId = (_, res: express.Response) => res.locals.oauth?.token.user.id
|
||||||
|
|
||||||
export {
|
export {
|
||||||
|
|
Loading…
Reference in New Issue