mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Merge pull request #41579 from nextcloud/bugfix/action-failed-error
This commit is contained in:
commit
d019c9ad93
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
|
||||
}
|
||||
|
||||
|
|
|
|||
4
dist/files-main.js
vendored
4
dist/files-main.js
vendored
File diff suppressed because one or more lines are too long
2
dist/files-main.js.map
vendored
2
dist/files-main.js.map
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue