We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fbe6f75 commit 10a70c1Copy full SHA for 10a70c1
lib/layout.js
@@ -226,6 +226,8 @@ export default class PodiumLayout {
226
middleware() {
227
return async (req, res, next) => {
228
const incoming = new HttpIncoming(req, res, res.locals);
229
+ incoming.url = `${req.protocol}://${req.get('host')}${req.originalUrl}`;
230
+
231
try {
232
await this.process(incoming);
233
// if this is a proxy request then no further work should be done.
package.json
@@ -41,7 +41,7 @@
41
"@podium/context": "5.0.0-next.6",
42
"@podium/proxy": "5.0.0-next.7",
43
"@podium/schemas": "5.0.0-next.6",
44
- "@podium/utils": "5.0.0-next.8",
+ "@podium/utils": "5.0.0-next.9",
45
"abslog": "2.4.0",
46
"lodash.merge": "4.6.2",
47
"objobj": "1.0.0",
0 commit comments