1
0
Fork 0
mirror of synced 2024-06-30 20:10:54 +12:00
This commit is contained in:
mike12345567 2020-11-06 21:32:03 +00:00
parent 472305d214
commit eca97f6f57

View file

@ -2,8 +2,10 @@ const COOKIE_SEPARATOR = ";"
const APP_PREFIX = "app_"
const KEY_VALUE_SPLIT = "="
export const getAppId = (allCookies) => {
const cookie = allCookies.split(COOKIE_SEPARATOR).find(cookie => cookie.trim().startsWith("budibase:currentapp"))
export const getAppId = allCookies => {
const cookie = allCookies
.split(COOKIE_SEPARATOR)
.find(cookie => cookie.trim().startsWith("budibase:currentapp"))
let appId = location.pathname.split("/")[1]
appId = appId && appId.startsWith(APP_PREFIX) ? appId : undefined
if (!appId && cookie && cookie.split(KEY_VALUE_SPLIT).length === 2) {