From 17779995c3d80e1dbc51a49bba60ececfb3416c7 Mon Sep 17 00:00:00 2001 From: marcobaobao Date: Tue, 21 Nov 2023 18:07:04 +0100 Subject: [PATCH] archive bugfix --- frontend/src/views/Archive.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/views/Archive.tsx b/frontend/src/views/Archive.tsx index d350258..e5895e9 100644 --- a/frontend/src/views/Archive.tsx +++ b/frontend/src/views/Archive.tsx @@ -108,8 +108,8 @@ export default function Downloaded() { path: upperLevel, shaSum: '', size: 0, - }, ...r] - : r + }, ...r.filter(f => f.name !== '')] + : r.filter(f => f.name !== '') ) ) )()