From 3d6fe1375ba46ed317595be65ce011926ab3b9b3 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Tue, 28 Apr 2026 12:02:18 +0200 Subject: [PATCH] fix(call): Fix file name of extracted participant list Signed-off-by: Joas Schilling --- lib/Controller/CallController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Controller/CallController.php b/lib/Controller/CallController.php index 59ce43c58a8..b80b9ccbd6a 100644 --- a/lib/Controller/CallController.php +++ b/lib/Controller/CallController.php @@ -188,7 +188,7 @@ public function downloadParticipantsForCall(string $format = 'csv'): DataDownloa fseek($output, 0); // Clean the room name - $cleanedRoomName = preg_replace('/[\/\\:*?"<>|\- ]+/', '-', $this->room->getName()); + $cleanedRoomName = preg_replace('/[\/\\\\:*?"<>|\- ]+/', '-', $this->room->getName()); // Limit to a reasonable length $cleanedRoomName = substr($cleanedRoomName, 0, 100);