fix(RouteRegistry): initialize RouteParams.params

Fix a bug caused by RouteRegistry.generate not initializing RouteParams.params to a StringMap

Closes #3755
This commit is contained in:
Isaac Park
2015-08-25 11:59:57 -04:00
committed by Brian Ford
parent ecf6ba3974
commit 3791c4a682
2 changed files with 8 additions and 1 deletions

View File

@ -211,7 +211,7 @@ export class RouteRegistry {
} else if (segment == '' || segment == '.' || segment == '..') {
throw new BaseException(`"${segment}/" is only allowed at the beginning of a link DSL.`);
}
let params = null;
let params = {};
if (i + 1 < linkParams.length) {
let nextSegment = linkParams[i + 1];
if (isStringMap(nextSegment)) {