🚸(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
committed by aleb_the_flash
parent 0f3eb35c83
commit d0cf3974ad
@@ -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')} />
}