diff --git a/src/backend/src/filesystem/ll_operations/ll_readshares.js b/src/backend/src/filesystem/ll_operations/ll_readshares.js index e8b8e0b2d..6ad0eea74 100644 --- a/src/backend/src/filesystem/ll_operations/ll_readshares.js +++ b/src/backend/src/filesystem/ll_operations/ll_readshares.js @@ -79,6 +79,7 @@ class LLReadShares extends LLFilesystemOperation { } for ( const node of interm_results ) { + if ( ! await node.exists() ) continue; if ( ! await svc_acl.check(actor, node, 'see') ) continue; results.push(node); }