Merge pull request #44021 from nextcloud/backport/44016/stable28

[stable28] fix(settings): Disable app again if it breaks the files app
This commit is contained in:
Pytal 2024-03-06 11:05:01 -08:00 committed by GitHub
commit 67c9ab49ea
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 6 additions and 4 deletions

View file

@ -198,7 +198,7 @@ const actions = {
onClick: () => window.location.reload(),
close: false,
}
},
)
setTimeout(function() {
location.reload()
@ -207,10 +207,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