Merge pull request #41579 from nextcloud/bugfix/action-failed-error

pull/41475/head
Julius Härtl 7 months ago committed by GitHub
commit d019c9ad93
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -282,7 +282,7 @@ export default Vue.extend({
const success = await action.exec(this.source, this.currentView, this.currentDir)
// If the action returns null, we stay silent
if (success === null) {
if (success === null || success === undefined) {
return
}

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