summaryrefslogtreecommitdiffstats
path: root/lib/private/files/cache
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2015-04-20 14:54:54 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2015-04-20 14:54:54 +0200
commit23f1bdc3d4682dbb2e8d1a82921d62dbe0b213be (patch)
treef1a078e04f4d577cd03355c880257977e5e3f295 /lib/private/files/cache
parent92b60e36de8d89e8ea7c4781a8c5d5fa4371b7c3 (diff)
downloadnextcloud-server-23f1bdc3d4682dbb2e8d1a82921d62dbe0b213be.tar.gz
nextcloud-server-23f1bdc3d4682dbb2e8d1a82921d62dbe0b213be.zip
Introduce Storage::getMetaData() to allow storage implementations more control over the data array
Diffstat (limited to 'lib/private/files/cache')
-rw-r--r--lib/private/files/cache/scanner.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/files/cache/scanner.php b/lib/private/files/cache/scanner.php
index c1ba7c01461..713dcda3ac3 100644
--- a/lib/private/files/cache/scanner.php
+++ b/lib/private/files/cache/scanner.php
@@ -110,7 +110,7 @@ class Scanner extends BasicEmitter {
return null;
}
- $data = $this->storage->getData($path);
+ $data = $this->storage->getMetaData($path);
$data['permissions'] = $permissions;
return $data;