Always lowercase the app url on search
This commit is contained in:
parent
7e0c435b7b
commit
439c5fc7d6
|
@ -43,7 +43,7 @@ async function getAppIdFromUrl(ctx) {
|
|||
|
||||
// search prod apps for a url that matches, exclude dev where id is always used
|
||||
const apps = await getAllApps(CouchDB, { dev: false })
|
||||
const app = apps.filter(a => a.url === possibleAppUrl)[0]
|
||||
const app = apps.filter(a => a.url.toLowerCase() === possibleAppUrl)[0]
|
||||
|
||||
if (app && app.appId) {
|
||||
return app.appId
|
||||
|
|
Loading…
Reference in New Issue