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

github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordartcafe <github@dartcafe.de>2020-08-17 18:41:53 +0300
committerdartcafe <github@dartcafe.de>2020-08-17 18:41:53 +0300
commit2a1cfd2ad456769dbf8d8d6a72ef8d3ae070d2a3 (patch)
treec6491214860d54feb78bedb5ef9ebdff9a2bf632 /lib/Controller
parent2778e299a90640e29f0c4fac40ef86314c5f729e (diff)
removed loggings
Diffstat (limited to 'lib/Controller')
-rw-r--r--lib/Controller/ShareController.php1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Controller/ShareController.php b/lib/Controller/ShareController.php
index 9c566214..a009150e 100644
--- a/lib/Controller/ShareController.php
+++ b/lib/Controller/ShareController.php
@@ -200,7 +200,6 @@ class ShareController extends Controller {
$shares = [];
try {
$share = $this->shareService->get($token);
- \OC::$server->getLogger()->alert('Suche nach Gruppe: ' . $share->getUserId());
foreach ($this->systemService->getContactsGroupMembers($share->getUserId()) as $member) {
$shares[] = $this->shareService->add($share->getpollId(), 'contact', $member['user'], $member['emailAddress']) ;
}