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 <coding@schilljs.com>2022-11-03 11:42:24 +0300
committerJoas Schilling <coding@schilljs.com>2022-11-03 11:42:24 +0300
commit28c66fafbc7359228d2beaccc8ccd73b561d7bbb (patch)
treeb29a4862d96430d679d4049b127ca0977a0f42ec
parent6e4ffde3b6b989b9cf80b755b7f19f566471dd79 (diff)
No notification for voting
The messages are not rendered either so we shouldn't push for them. Signed-off-by: Joas Schilling <coding@schilljs.com>
-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]);
}