Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorVincent Petry <vincent@nextcloud.com>2022-06-02 12:23:22 +0300
committerCarl Schwan <carl@carlschwan.eu>2022-07-28 17:53:23 +0300
commit54a0d8fe646fd01550423e6c91c272444dce6112 (patch)
tree4b3f6df53b769009c3cdd90e68e727cf180a12a4 /apps
parentdbbc426f754df9b39b95f182103e914b3348ff20 (diff)
Don't reset share attributes when not specified
When not specified in the OCS call, don't reset the share attributes. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
Diffstat (limited to 'apps')
-rw-r--r--apps/files_sharing/lib/Controller/ShareAPIController.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/apps/files_sharing/lib/Controller/ShareAPIController.php b/apps/files_sharing/lib/Controller/ShareAPIController.php
index 6b43e0f9dcf..889428db99a 100644
--- a/apps/files_sharing/lib/Controller/ShareAPIController.php
+++ b/apps/files_sharing/lib/Controller/ShareAPIController.php
@@ -681,7 +681,9 @@ class ShareAPIController extends OCSController {
$share->setNote($note);
}
- $share = $this->setShareAttributes($share, $attributes);
+ if ($attributes !== null) {
+ $share = $this->setShareAttributes($share, $attributes);
+ }
try {
$share = $this->shareManager->createShare($share);
@@ -1228,7 +1230,9 @@ class ShareAPIController extends OCSController {
}
}
- $share = $this->setShareAttributes($share, $attributes);
+ if ($attributes !== null) {
+ $share = $this->setShareAttributes($share, $attributes);
+ }
try {
$share = $this->shareManager->updateShare($share);