Merge pull request #44016 from nextcloud/fix/disable-app-again-if-failed

fix(settings): Disable app again if it breaks the files app
pull/44015/head
Pytal 3 months ago committed by GitHub
commit 945d97ded1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -210,7 +210,7 @@ const actions = {
onClick: () => window.location.reload(),
close: false,
}
},
)
setTimeout(function() {
location.reload()
@ -219,10 +219,12 @@ const actions = {
})
.catch(() => {
if (!Array.isArray(appId)) {
showError(t('settings', 'Error: This app cannot be enabled because it makes the server unstable'))
context.commit('setError', {
appId: apps,
error: t('settings', 'Error: This app cannot be enabled because it makes the server unstable'),
})
context.dispatch('disableApp', { appId })
}
})
})

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save