Merge pull request #34223 from nextcloud/includeTags

includeTags -> include_tags
This commit is contained in:
blizzz 2022-10-01 21:43:10 +02:00 committed by GitHub
commit 2b854c1044
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -370,7 +370,7 @@ class ShareAPIController extends OCSController {
* @return DataResponse
* @throws OCSNotFoundException
*/
public function getShare(string $id, bool $includeTags = false): DataResponse {
public function getShare(string $id, bool $include_tags = false): DataResponse {
try {
$share = $this->getShareById($id);
} catch (ShareNotFound $e) {
@ -381,7 +381,7 @@ class ShareAPIController extends OCSController {
if ($this->canAccessShare($share)) {
$share = $this->formatShare($share);
if ($includeTags) {
if ($include_tags) {
$share = Helper::populateTags([$share], 'file_source', \OC::$server->getTagManager());
} else {
$share = [$share];