Skip to content

Commit

Permalink
fix(activity): Fix parameter type of call activity
Browse files Browse the repository at this point in the history
Signed-off-by: Joas Schilling <coding@schilljs.com>
  • Loading branch information
nickvergessen authored and backportbot[bot] committed Nov 7, 2024
1 parent 19ff854 commit 066cacc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Activity/Provider/Base.php
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ protected function getRoom(Room $room, string $userId): array {

return [
'type' => 'call',
'id' => $room->getId(),
'id' => (string)$room->getId(),
'name' => $room->getDisplayName($userId),
'link' => $this->url->linkToRouteAbsolute('spreed.Page.showCall', ['token' => $room->getToken()]),
'call-type' => $stringType,
Expand Down

0 comments on commit 066cacc

Please sign in to comment.