From 0b26b45da0fc797ee0e3ba72160517d1ef8545aa Mon Sep 17 00:00:00 2001 From: provokateurin Date: Tue, 2 Apr 2024 19:24:23 +0200 Subject: [PATCH] fix(SystemMessage): Use link parameter for Circle URL in rich object paramters Signed-off-by: provokateurin --- lib/Chat/Parser/SystemMessage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Chat/Parser/SystemMessage.php b/lib/Chat/Parser/SystemMessage.php index 564b83951a8..d70bb56bfa1 100644 --- a/lib/Chat/Parser/SystemMessage.php +++ b/lib/Chat/Parser/SystemMessage.php @@ -963,7 +963,7 @@ protected function getCircle(string $circleId): array { 'type' => 'circle', 'id' => $circleId, 'name' => $this->circleNames[$circleId], - 'url' => $this->circleLinks[$circleId], + 'link' => $this->circleLinks[$circleId], ]; }