Skip to content

Commit

Permalink
fix: LazyRoot missing method
Browse files Browse the repository at this point in the history
Signed-off-by: Marcel Klehr <[email protected]>
  • Loading branch information
marcelklehr committed May 3, 2024
1 parent 38a6f1a commit 3cbef37
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/private/Files/Node/LazyRoot.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,8 @@ public function getFirstNodeByIdInPath(int $id, string $path): ?Node {
public function getNodeFromCacheEntryAndMount(ICacheEntry $cacheEntry, IMountPoint $mountPoint): INode {
return $this->getRootFolder()->getNodeFromCacheEntryAndMount($cacheEntry, $mountPoint);
}

public function getAppDataDirectoryName(): string {
return $this->__call(__FUNCTION__, func_get_args());
}
}

0 comments on commit 3cbef37

Please sign in to comment.