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 14:35:26 +0300
committerGitHub <noreply@github.com>2022-11-03 14:35:26 +0300
commita7575e69d4106d8dc05e98a63e359adf802d8565 (patch)
treefd7c7bcf69e8206c6801734f42f1121c4e934e0a
parent9aea58d7d66620f4f1124312d245ed565e837286 (diff)
parent183069cbbbf6b9790c130fc527835528dd2c5ecd (diff)
Merge pull request #8275 from nextcloud/backport/8272/stable25v15.0.1
[stable25] 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]);
}