Merge pull request #4095 from Budibase/fix/4093
Fix for case sensitivity in client app URLs
This commit is contained in:
commit
88a2a219f5
|
@ -71,7 +71,7 @@ exports.getDeployedApps = async () => {
|
|||
for (let [key, value] of Object.entries(json)) {
|
||||
if (value.url) {
|
||||
value.url = value.url.toLowerCase()
|
||||
apps[key] = value
|
||||
apps[key.toLowerCase()] = value
|
||||
}
|
||||
}
|
||||
return apps
|
||||
|
|
Loading…
Reference in New Issue