From 06a119242e9e26a0076adc1558c8a3009a1c6b1f Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Wed, 22 May 2019 12:17:33 +0200 Subject: [PATCH] make ObjectStoreStorage::getURN public Signed-off-by: Robin Appelman --- lib/private/Files/ObjectStore/ObjectStoreStorage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/Files/ObjectStore/ObjectStoreStorage.php b/lib/private/Files/ObjectStore/ObjectStoreStorage.php index 30a946dcc3..681e45ad3f 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; }