1
0
Fork 0
mirror of synced 2024-07-04 14:01:27 +12:00

bugfix - appId not recognised in static.js controller

This commit is contained in:
Michael Shanks 2020-10-08 22:31:27 +01:00
parent fcb093699d
commit 9f3bc07729

View file

@ -153,7 +153,7 @@ exports.serveApp = async function(ctx) {
// only set the appId cookie for /appId .. we COULD check for valid appIds // only set the appId cookie for /appId .. we COULD check for valid appIds
// but would like to avoid that DB hit // but would like to avoid that DB hit
const looksLikeAppId = /^[0-9a-f]{32}$/.test(appId) const looksLikeAppId = /^app:[0-9a-f]{32}$/.test(appId)
if (looksLikeAppId && !ctx.isAuthenticated) { if (looksLikeAppId && !ctx.isAuthenticated) {
const anonUser = { const anonUser = {
userId: "ANON", userId: "ANON",