From: Robin Appelman Date: Wed, 22 May 2019 10:17:33 +0000 (+0200) Subject: make ObjectStoreStorage::getURN public X-Git-Tag: v17.0.0beta1~376^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=06a119242e9e26a0076adc1558c8a3009a1c6b1f;p=nextcloud-server.git make ObjectStoreStorage::getURN public Signed-off-by: Robin Appelman --- 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; }