fix: check if shraed files exist in ll_readshares

This may have been breaking the ability to see directories shared by
other users sometimes.
This commit is contained in:
KernelDeimos
2025-09-26 18:59:23 -04:00
parent 088ff4d696
commit baf261c0c4
@@ -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);
}