chore: bump the version for error messages to 1.1.1

This commit is contained in:
Dorian Niemiec 2025-01-05 14:54:20 +01:00
parent c63f9d8d59
commit 891b03c084

View file

@ -97,14 +97,14 @@ Mod.prototype.callback = function callback(req, res, serverconsole, responseEnd,
try {
if (nextError) throw nextError;
if (!isPrepared) {
callServerError(503, "nextjs-integration/1.1.0");
callServerError(503, "nextjs-integration/1.1.1");
serverconsole.errmessage("Next.js application not yet fully loaded.");
return;
}
await handle(req, res);
serverconsole.resmessage("Next.js request successfully processed.");
} catch (err) {
callServerError(500, "nextjs-integration/1.1.0", err);
callServerError(500, "nextjs-integration/1.1.1", err);
}
}
}