fix: some weird upload bugs

This commit is contained in:
2025-11-30 19:39:47 +00:00
parent a3110b67c3
commit ccdeaf0364
5 changed files with 17 additions and 6 deletions

View File

@@ -19,7 +19,8 @@ import (
func NewServer(c Config) (*fiber.App, error) {
app := fiber.New(fiber.Config{
ErrorHandler: httperr.ErrorHandler,
ErrorHandler: httperr.ErrorHandler,
StreamRequestBody: true,
})
app.Use(logger.New())