mirror of
https://github.com/kyantech/Palmr.git
synced 2025-10-23 06:11:58 +00:00
Fix empty .txt file uploads by preventing stream consumption
Co-authored-by: danielalves96 <62755605+danielalves96@users.noreply.github.com>
This commit is contained in:
@@ -6,12 +6,12 @@ import { FilesystemController } from "./controller";
|
|||||||
export async function filesystemRoutes(app: FastifyInstance) {
|
export async function filesystemRoutes(app: FastifyInstance) {
|
||||||
const filesystemController = new FilesystemController();
|
const filesystemController = new FilesystemController();
|
||||||
|
|
||||||
app.addContentTypeParser("*", async (request: FastifyRequest, payload: any) => {
|
app.addContentTypeParser("*", (request: FastifyRequest, payload: any, done: any) => {
|
||||||
return payload;
|
done(null, null);
|
||||||
});
|
});
|
||||||
|
|
||||||
app.addContentTypeParser("application/json", async (request: FastifyRequest, payload: any) => {
|
app.addContentTypeParser("application/json", (request: FastifyRequest, payload: any, done: any) => {
|
||||||
return payload;
|
done(null, null);
|
||||||
});
|
});
|
||||||
|
|
||||||
app.put(
|
app.put(
|
||||||
|
Reference in New Issue
Block a user