From d0cf3974ad42399cd5b6ce9084092ee68c017255 Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Wed, 11 Mar 2026 18:49:04 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=B8(frontend)=20allow=20downloading=20?= =?UTF-8?q?recordings=20with=20"failed=20to=20stop"=20status?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When support manually marks a recording as "failed to stop," enable users to download the recording from the frontend. This ensures users can recover their recordings even if the automatic stop process fails. --- .../src/features/recording/routes/RecordingDownload.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/frontend/src/features/recording/routes/RecordingDownload.tsx b/src/frontend/src/features/recording/routes/RecordingDownload.tsx index e69f47d7..3974158e 100644 --- a/src/frontend/src/features/recording/routes/RecordingDownload.tsx +++ b/src/frontend/src/features/recording/routes/RecordingDownload.tsx @@ -72,7 +72,8 @@ export const RecordingDownload = () => { if ( data.status !== RecordingStatus.Saved && - data.status !== RecordingStatus.NotificationSucceed + data.status !== RecordingStatus.NotificationSucceed && + data.status !== RecordingStatus.FailedToStop ) { return }