Merge pull request #60455 from nextcloud/fix/forceEnableApp

fix(appstore): fix reference to non-existing `forceEnableApp` function
This commit is contained in:
Andy Scherzinger 2026-05-18 01:11:34 +02:00 committed by GitHub
commit 65ffa81e2d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 8 additions and 8 deletions

View file

@ -23,6 +23,6 @@ export const actionForceEnable: AppAction = {
},
async callback(app: IAppstoreApp | IAppstoreExApp) {
const store = useAppsStore()
await store.forceEnableApp(app.id)
await store.enableApp(app.id, true)
},
}

View file

@ -91,7 +91,7 @@ async function onSuiteChanged(newSuiteId: string | null, oldSuiteId: string | nu
})
if (result) {
await store.forceEnableApp(suite.appId)
await store.enableApp(suite.appId, true)
} else {
// Revert selection
selectedSuiteId.value = oldSuiteId

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long