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

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <213943+nickvergessen@users.noreply.github.com>2022-11-03 12:58:28 +0300
committerGitHub <noreply@github.com>2022-11-03 12:58:28 +0300
commite18e71802f01df477a1e08c6dff081c2cac38578 (patch)
treed0b3ec876a89d32fbf31494419fe742143771af1
parent7d611cfe85107c3e2d62dfe940927bee6eeb43aa (diff)
parent28c66fafbc7359228d2beaccc8ccd73b561d7bbb (diff)
Merge pull request #8272 from nextcloud/bugfix/8266/no-notification-for-voting
No notification for voting
-rw-r--r--lib/Controller/PollController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Controller/PollController.php b/lib/Controller/PollController.php
index 8deb0ead2..cfebd9a14 100644
--- a/lib/Controller/PollController.php
+++ b/lib/Controller/PollController.php
@@ -183,7 +183,7 @@ class PollController extends AEnvironmentAwareController {
],
],
], JSON_THROW_ON_ERROR);
- $this->chatManager->addSystemMessage($this->room, $attendee->getActorType(), $attendee->getActorId(), $message, $this->timeFactory->getDateTime(), true);
+ $this->chatManager->addSystemMessage($this->room, $attendee->getActorType(), $attendee->getActorId(), $message, $this->timeFactory->getDateTime(), false);
} catch (\Exception $e) {
$this->logger->error($e->getMessage(), ['exception' => $e]);
}