From 15b95c4d08c3add91c7a77a35c0e3d2783ba8eb5 Mon Sep 17 00:00:00 2001 From: simos Date: Mon, 15 Sep 2025 15:56:33 +0000 Subject: [PATCH] Fixing maximum depth of directories --- server/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/index.js b/server/index.js index d69f825..f6553b8 100755 --- a/server/index.js +++ b/server/index.js @@ -506,7 +506,7 @@ app.get('/api/projects/:projectName/files', authenticateToken, async (req, res) return res.status(404).json({ error: `Project path not found: ${actualPath}` }); } - const files = await getFileTree(actualPath, 3, 0, true); + const files = await getFileTree(actualPath, 10, 0, true); const hiddenFiles = files.filter(f => f.name.startsWith('.')); res.json(files); } catch (error) {