mirror of
https://github.com/Escartem/AnimeWwise.git
synced 2026-06-11 04:05:37 +08:00
fix extraction bug
This commit is contained in:
2
app.py
2
app.py
@@ -306,7 +306,7 @@ class AnimeWwise(QMainWindow):
|
|||||||
|
|
||||||
return {
|
return {
|
||||||
"name": item.text(0),
|
"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),
|
"source": item.text(3),
|
||||||
"offset": int(item.text(1), 16),
|
"offset": int(item.text(1), 16),
|
||||||
"size": int(item.text(2))
|
"size": int(item.text(2))
|
||||||
|
|||||||
Reference in New Issue
Block a user