]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - server/lib/uploadx.ts
Refactor plugin card
[github/Chocobozzz/PeerTube.git] / server / lib / uploadx.ts
index 11b1044db48f5fac6589baf3e96cf57d8bb88e05..36f5a556c6d7effb4d3bffc7c80290628bc590ea 100644 (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 {