aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2023-11-19 16:31:40 +0100
committerGitHub <noreply@github.com>2023-11-19 16:31:40 +0100
commitd019c9ad938c0d6edfd3438a4cfce424ec962578 (patch)
treeb684a682bd7a944b8f270a82254725933a90a1c2 /apps
parent330d9e3d6ed47ecd6cd01880fd6752ed8de6e8ab (diff)
parentf4dbe8d9a691eb5f5fc05c741b088e92620e4dff (diff)
downloadnextcloud-server-d019c9ad938c0d6edfd3438a4cfce424ec962578.tar.gz
nextcloud-server-d019c9ad938c0d6edfd3438a4cfce424ec962578.zip
Merge pull request #41579 from nextcloud/bugfix/action-failed-error
Diffstat (limited to 'apps')
-rw-r--r--apps/files/src/components/FileEntry/FileEntryActions.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/src/components/FileEntry/FileEntryActions.vue b/apps/files/src/components/FileEntry/FileEntryActions.vue
index fa15a5f8d59..3c94e00e609 100644
--- a/apps/files/src/components/FileEntry/FileEntryActions.vue
+++ b/apps/files/src/components/FileEntry/FileEntryActions.vue
@@ -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
}