fixed proxy 'to' url to include 'from' querystring

This commit is contained in:
Lloyd Brookes
2015-11-19 14:10:42 +00:00
parent edacdca8f5
commit e16652ebd8

View File

@ -180,7 +180,7 @@ function proxyRequest (route, app) {
const next = arguments[arguments.length - 1]
const keys = []
route.re = pathToRegexp(route.from, keys)
route.new = this.path.replace(route.re, route.to)
route.new = this.url.replace(route.re, route.to)
keys.forEach((key, index) => {
const re = RegExp(`:${key.name}`, 'g')