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.
2 parents b7ecd4f + 6cbbed2 commit 96cac9bCopy full SHA for 96cac9b
functions_v1/src/index.js
@@ -14,7 +14,7 @@ if (process.env.FIREBASE_DEBUG_MODE) {
14
}
15
16
function targetUrlForPath(path) {
17
- let target = BASE_URL + "/_gen" + path
+ let target = BASE_URL + "/_gen" + path.toLowerCase()
18
if (!target.endsWith("/")) {
19
target += "/"
20
@@ -32,7 +32,7 @@ function getPageUrl(path, params) {
32
if (params === null) {
33
return null
34
35
- return BASE_URL + path + "?offset=" + params.offset + "&limit=" + params.limit
+ return BASE_URL + path.toLowerCase() + "?offset=" + params.offset + "&limit=" + params.limit
36
37
38
function getPreviousPage(params) {
0 commit comments