1
0
Fork 0

fixed overwrite of routes with same path

This commit is contained in:
Frank Celler 2013-07-27 14:26:30 +02:00
parent ae7bf284ef
commit f3e7b10e3a
1 changed files with 2 additions and 2 deletions

View File

@ -861,8 +861,8 @@ function flattenRouting (routes, path, urlParameters, depth, prefix) {
prefix: prefix,
depth: depth,
urlParameters: urlParameters,
callback: routes.routes.callback,
route: routes.routes.route
callback: sorted[i].callback,
route: sorted[i].route
};
}