1
0
Fork 0
mirror of synced 2024-06-30 03:50:37 +12:00

Quick fix for #4093 - make sure the App ID/App URL returned for deployed apps is always lowercase, as URLs are not case sensitive and should not be compared as such.

This commit is contained in:
Michael Drury 2022-01-18 20:54:19 +00:00
parent 9ef9c63b0e
commit 9b885d0207

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