Quick fix suggested by Rory to make use of the cached license when fetching the app package.
This commit is contained in:
parent
6e6acf64ab
commit
a1d8ad047a
|
@ -208,7 +208,7 @@ export async function fetchAppPackage(ctx: UserCtx) {
|
|||
let application = await db.get(DocumentType.APP_METADATA)
|
||||
const layouts = await getLayouts()
|
||||
let screens = await getScreens()
|
||||
const license = await licensing.getLicense()
|
||||
const license = await licensing.getCachedLicense()
|
||||
|
||||
// Enrich plugin URLs
|
||||
application.usedPlugins = objectStore.enrichPluginURLs(
|
||||
|
|
Loading…
Reference in New Issue