We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6f8cec commit 8656725Copy full SHA for 8656725
lib/server.js
@@ -345,7 +345,7 @@ internals.Server = class {
345
346
Hoek.assert(id && typeof id === 'string', 'Invalid route id:', id);
347
348
- const record = this._core.router.ids[id];
+ const record = this._core.router.ids.get(id);
349
if (!record) {
350
return null;
351
}
package.json
@@ -19,7 +19,7 @@
19
"@hapi/ammo": "5.x.x",
20
"@hapi/boom": "9.x.x",
21
"@hapi/bounce": "2.x.x",
22
- "@hapi/call": "7.x.x",
+ "@hapi/call": "8.x.x",
23
"@hapi/catbox": "11.x.x",
24
"@hapi/catbox-memory": "5.x.x",
25
"@hapi/heavy": "7.x.x",
0 commit comments