Skip to content

Commit 569e8f1

Browse files
authored
Fix robustness of iexplore download paths (#676)
1 parent 45bbc26 commit 569e8f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dissect/target/plugins/apps/browser/iexplore.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ def downloads(self) -> Iterator[BrowserDownloadRecord]:
212212
ts_end=ts_end,
213213
browser="iexplore",
214214
id=container_record.EntryId,
215-
path=self.target.fs.path(down_path),
215+
path=self.target.fs.path(down_path) if down_path else None,
216216
url=down_url,
217217
size=None,
218218
state=None,

0 commit comments

Comments
 (0)