summaryrefslogtreecommitdiffstats
path: root/lib/Controller
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Controller')
-rw-r--r--lib/Controller/ItemController.php8
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/Controller/ItemController.php b/lib/Controller/ItemController.php
index b72311416..9c83b4dfc 100644
--- a/lib/Controller/ItemController.php
+++ b/lib/Controller/ItemController.php
@@ -334,12 +334,14 @@ class ItemController extends Controller
public function share($itemId, $shareWithId)
{
try {
- $this->itemService->shareItem($itemId, $shareWithId, $this->userId);
+ $exists = $this->itemService->checkSharing($itemId, $shareWithId, $this->userId);
+
+ if($exists==0){
+ $this->itemService->shareItem($itemId, $shareWithId, $this->userId);
+ }
} catch (ServiceNotFoundException $ex) {
return $this->error($ex, Http::STATUS_NOT_FOUND);
}
-
- return [];
}
}