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

pull/41475/head
Julius Härtl 2023-11-19 16:31:40 +07:00 committed by GitHub
commit d019c9ad93
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

@ -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