From 907bc57c2d0869c8d0ea532a255c857515dc5a16 Mon Sep 17 00:00:00 2001 From: Nicolas Meienberger Date: Wed, 25 Feb 2026 23:07:53 +0100 Subject: [PATCH] fix(restic-dto): allow missing current_files in schema --- app/schemas/restic-dto.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/schemas/restic-dto.ts b/app/schemas/restic-dto.ts index 2683834b..f74190e0 100644 --- a/app/schemas/restic-dto.ts +++ b/app/schemas/restic-dto.ts @@ -42,7 +42,7 @@ export const resticBackupProgressMetricsSchema = type({ files_done: "number", total_bytes: "number", bytes_done: "number", - current_files: "string[]", + current_files: "string[] | undefined?", }); export const resticBackupProgressSchema = resticBackupProgressMetricsSchema.and(