1
0
mirror of https://github.com/Escartem/AnimeWwise.git synced 2026-06-04 23:40:25 +08:00

fix extraction bug

This commit is contained in:
Escartem
2024-09-06 14:12:09 +02:00
parent 6b553d6e64
commit dadc2a6f77

2
app.py
View File

@@ -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))