Fix missing path check

This commit is contained in:
heliguy4599
2024-10-06 22:31:07 -04:00
parent 61142052e4
commit 59f6e8c640

View File

@@ -360,7 +360,7 @@ class SnapshotPage(Adw.BreakpointBin):
id_to_tar = {}
for app_id in app_ids:
path = f"{HostInfo.snapshots_path}{app_id}"
if not os.path.exists:
if not os.path.exists(path):
continue
tarlist = []