Skip to content

Commit

Permalink
Quick fix for #4093 - make sure the App ID/App URL returned for deplo…
Browse files Browse the repository at this point in the history
…yed apps is always lowercase, as URLs are not case sensitive and should not be compared as such.
  • Loading branch information
mike12345567 committed Jan 18, 2022
1 parent 9ef9c63 commit 9b885d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/server/src/utilities/workerRequests.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9b885d0

Please sign in to comment.