fix: Be less strict about action exec return value

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl 2023-11-17 16:00:18 +01:00
parent 653b18cb95
commit dcca3f024f

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
}