1
0
mirror of https://github.com/sasjs/server.git synced 2025-12-10 11:24:35 +00:00

chore: quick fix

This commit is contained in:
2022-07-05 15:29:44 +05:00
parent 1108d3dd7b
commit a10b87930c

View File

@@ -28,7 +28,7 @@ export const getUri = (req: Request) => {
return (baseUrl + '/' + appStream).replace(/\/$/, '')
}
return baseUrl + reqPath
return (baseUrl + reqPath).replace(/\/$/, '')
}
export const isAuthorizingRoute = (req: Request): boolean =>