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

This commit is contained in:
Julius Härtl 2023-11-19 16:31:40 +01: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

View file

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

4
dist/files-main.js vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long