Fix: Descripción (Saltos de líneas habilitados).

This commit is contained in:
2026-03-02 10:54:28 -03:00
parent 1bc93972ef
commit c60d7be293
3 changed files with 2 additions and 9 deletions

View File

@@ -233,13 +233,6 @@ app.Use(async (context, next) =>
context.Response.Headers.Append("Access-Control-Allow-Private-Network", "true");
}
// Permitir que la petición OPTIONS pase sin más checks
if (context.Request.Method == "OPTIONS")
{
context.Response.StatusCode = 204; // No Content
return;
}
await next();
});
app.UseCors("AllowSpecificOrigin");