Skip to content

Commit

Permalink
Merge pull request #41579 from nextcloud/bugfix/action-failed-error
Browse files Browse the repository at this point in the history
  • Loading branch information
juliusknorr authored Nov 19, 2023
2 parents 330d9e3 + f4dbe8d commit d019c9a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion apps/files/src/components/FileEntry/FileEntryActions.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down
4 changes: 2 additions & 2 deletions dist/files-main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/files-main.js.map

Large diffs are not rendered by default.

0 comments on commit d019c9a

Please sign in to comment.