Browse Source

Merge pull request #4095 from Budibase/fix/4093

Fix for case sensitivity in client app URLs
pull/4434/head
Michael Drury 4 years ago
committed by GitHub
parent
commit
88a2a219f5
  1. 2
      packages/server/src/utilities/workerRequests.js

2
packages/server/src/utilities/workerRequests.js

@ -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…
Cancel
Save