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-07-06 15:08:26 +0300
committerJoas Schilling <coding@schilljs.com>2022-07-06 23:49:34 +0300
commita51a4db1f52debb72cf91fd6c14ec54af0e48bfa (patch)
tree62633374c7f3f5fe659c9137d7a46b27c68633f4
parent00b709097aae37de87e546dc7268f8491e196cea (diff)
Fix method name
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r--lib/Chat/ChatManager.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Chat/ChatManager.php b/lib/Chat/ChatManager.php
index de2bdcf66..361046a17 100644
--- a/lib/Chat/ChatManager.php
+++ b/lib/Chat/ChatManager.php
@@ -712,6 +712,6 @@ class ChatManager {
}
public function deleteExpiredMessages(int $roomId): void {
- $this->commentsManager->deleteMessageExpiredAtObject('chat', (string) $roomId);
+ $this->commentsManager->deleteCommentsExpiredAtObject('chat', (string) $roomId);
}
}