Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: Get Sanitized Name
Signed-off-by: Git'Fellow <[email protected]>
  • Loading branch information
solracsf authored and backportbot[bot] committed Jun 18, 2025
commit 8eedd0efa7292251a69771f183605b4b7f974bce
2 changes: 1 addition & 1 deletion lib/Dashboard/TeamDashboardWidget.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public function getItemsV2(string $userId, ?string $since = null, int $limit = 7
$circle->getDisplayName(),
'',
$this->urlGenerator->getAbsoluteURL($this->modelManager->generateLinkToCircle($circle->getSingleId())),
$this->urlGenerator->getAbsoluteURL($this->urlGenerator->linkToRoute('core.GuestAvatar.getAvatar', ['guestName' => $circle->getDisplayName(), 'size' => 64]))
$this->urlGenerator->getAbsoluteURL($this->urlGenerator->linkToRoute('core.GuestAvatar.getAvatar', ['guestName' => $circle->getSanitizedName(), 'size' => 64]))
);
}, $this->circleService->probeCircles($probe));
} catch (\Exception $e) {
Expand Down
Loading