@adonisjs/http-server 7.7.0 → 7.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/{chunk-6FSCILWX.js → chunk-OLJ72AJE.js} +3 -3
- package/build/{chunk-6FSCILWX.js.map → chunk-OLJ72AJE.js.map} +1 -1
- package/build/factories/main.js +1 -1
- package/build/index.js +1 -1
- package/build/src/exceptions.d.ts +6 -4
- package/build/src/server/main.d.ts +1 -1
- package/package.json +1 -1
|
@@ -4306,8 +4306,8 @@ var Server = class {
|
|
|
4306
4306
|
* We share this with the route middleware pipeline as well,
|
|
4307
4307
|
* so that it does not throw any exceptions
|
|
4308
4308
|
*/
|
|
4309
|
-
#requestErrorResponder = (error, ctx) => {
|
|
4310
|
-
this.#resolvedErrorHandler.report(error, ctx);
|
|
4309
|
+
#requestErrorResponder = async (error, ctx) => {
|
|
4310
|
+
await this.#resolvedErrorHandler.report(error, ctx);
|
|
4311
4311
|
return this.#resolvedErrorHandler.handle(error, ctx);
|
|
4312
4312
|
};
|
|
4313
4313
|
/**
|
|
@@ -4578,4 +4578,4 @@ export {
|
|
|
4578
4578
|
Server,
|
|
4579
4579
|
defineConfig
|
|
4580
4580
|
};
|
|
4581
|
-
//# sourceMappingURL=chunk-
|
|
4581
|
+
//# sourceMappingURL=chunk-OLJ72AJE.js.map
|