Compare commits

...

1 Commits

Author SHA1 Message Date
Robin Appelman 9125715c56 perf: don't fetch child mounts when getting node parent
Signed-off-by: Robin Appelman <robin@icewind.nl>
2026-04-11 13:23:14 +02:00
+1 -1
View File
@@ -279,7 +279,7 @@ class Node implements INode {
// Manually fetch the parent if the current node doesn't have a file info yet
try {
$fileInfo = $this->getFileInfo();
$fileInfo = $this->getFileInfo(false);
} catch (NotFoundException) {
$this->parent = $this->root->get($newPath);
/** @var \OCP\Files\Folder $this->parent */