From c23ab1d97bc766407e1e1f7b3b66d7dbca73ef3f Mon Sep 17 00:00:00 2001 From: Delgan Date: Thu, 22 Jan 2026 19:48:35 +0100 Subject: [PATCH] Revert pointless size reset --- backend/utils/archive_7zip.py | 1 - 1 file changed, 1 deletion(-) diff --git a/backend/utils/archive_7zip.py b/backend/utils/archive_7zip.py index d6b5ad0af..6994aace4 100644 --- a/backend/utils/archive_7zip.py +++ b/backend/utils/archive_7zip.py @@ -45,7 +45,6 @@ def process_file_7z( line = line.lstrip() if line.startswith("Path = "): current_file = line.split(" = ", 1)[1] - current_size = 0 elif line.startswith("Size = "): try: current_size = int(line.split(" = ")[1].strip())