Skip to content

Commit

Permalink
Merge pull request #10923 from Budibase/fix/cached-license-app-package
Browse files Browse the repository at this point in the history
Quick fix to app package licensing fetch
  • Loading branch information
mike12345567 committed Jun 15, 2023
2 parents 71face4 + bed911f commit afd5d6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/server/src/api/controllers/application.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.cache.getCachedLicense()

// Enrich plugin URLs
application.usedPlugins = objectStore.enrichPluginURLs(
Expand Down

0 comments on commit afd5d6e

Please sign in to comment.