diff options
author | Robin Appelman <robin@icewind.nl> | 2019-05-22 12:17:33 +0200 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2019-05-22 12:17:33 +0200 |
commit | 06a119242e9e26a0076adc1558c8a3009a1c6b1f (patch) | |
tree | be382ed65b78b5c771ebe3de0b9f774276a9db6a /lib/private | |
parent | f2885c171f5fc3b3dc54b612454616f5a929132a (diff) | |
download | nextcloud-server-06a119242e9e26a0076adc1558c8a3009a1c6b1f.tar.gz nextcloud-server-06a119242e9e26a0076adc1558c8a3009a1c6b1f.zip |
make ObjectStoreStorage::getURN public
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'lib/private')
-rw-r--r-- | lib/private/Files/ObjectStore/ObjectStoreStorage.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Files/ObjectStore/ObjectStoreStorage.php b/lib/private/Files/ObjectStore/ObjectStoreStorage.php index 30a946dcc3c..681e45ad3f2 100644 --- a/lib/private/Files/ObjectStore/ObjectStoreStorage.php +++ b/lib/private/Files/ObjectStore/ObjectStoreStorage.php @@ -223,7 +223,7 @@ class ObjectStoreStorage extends \OC\Files\Storage\Common { * @param int $fileId the fileid * @return null|string the unified resource name used to identify the object */ - protected function getURN($fileId) { + public function getURN($fileId) { if (is_numeric($fileId)) { return $this->objectPrefix . $fileId; } |