From dadc2a6f77b65573fd4eb124974166690b49cb32 Mon Sep 17 00:00:00 2001 From: Escartem Date: Fri, 6 Sep 2024 14:12:09 +0200 Subject: [PATCH] fix extraction bug --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 63149af..6a3d827 100644 --- a/app.py +++ b/app.py @@ -306,7 +306,7 @@ class AnimeWwise(QMainWindow): return { "name": item.text(0), - "path": path[1:-1], + "path": path[:-1] if path[0] in ["changed_files", "new_files"] else path[1:-1], "source": item.text(3), "offset": int(item.text(1), 16), "size": int(item.text(2))