Merge pull request #4095 from Budibase/fix/4093

Fix for case sensitivity in client app URLs
This commit is contained in:
Michael Drury 2022-01-19 10:06:01 +00:00 committed by GitHub
commit 88a2a219f5
1 changed files with 1 additions and 1 deletions

View File

@ -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