1
0
Fork 0
mirror of synced 2024-10-01 01:28:51 +13:00

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 f2e1cf3838
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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