🚸(frontend) allow downloading recordings with "failed to stop" status

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.
This commit is contained in:
lebaudantoine
2026-03-11 18:49:04 +01:00
parent 9b9a2f883c
commit dfd1d2c827
@@ -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 <ErrorScreen title={t('unsaved.title')} body={t('unsaved.body')} />
}