mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
fix: Be less strict about action exec return value
Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
parent
653b18cb95
commit
dcca3f024f
1 changed files with 1 additions and 1 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
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue