From baf261c0c4677cd2e69925467e68bee946e9c264 Mon Sep 17 00:00:00 2001 From: KernelDeimos <7225168+KernelDeimos@users.noreply.github.com> Date: Fri, 26 Sep 2025 18:59:23 -0400 Subject: [PATCH] fix: check if shraed files exist in ll_readshares This may have been breaking the ability to see directories shared by other users sometimes. --- src/backend/src/filesystem/ll_operations/ll_readshares.js | 1 + 1 file changed, 1 insertion(+) 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); }