Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/Files/Node/Node.php')
-rw-r--r--lib/private/Files/Node/Node.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/private/Files/Node/Node.php b/lib/private/Files/Node/Node.php
index 590f1080617..41e8bf75242 100644
--- a/lib/private/Files/Node/Node.php
+++ b/lib/private/Files/Node/Node.php
@@ -190,12 +190,13 @@ class Node implements \OCP\Files\Node {
}
/**
+ * @param bool $includeMounts
* @return int
* @throws InvalidPathException
* @throws NotFoundException
*/
- public function getSize() {
- return $this->getFileInfo()->getSize();
+ public function getSize($includeMounts = true) {
+ return $this->getFileInfo()->getSize($includeMounts);
}
/**