From 78d7960d70db84725ac1d47b32c57386d1281f66 Mon Sep 17 00:00:00 2001 From: JSCU-CNI <121175071+JSCU-CNI@users.noreply.github.com> Date: Thu, 11 Apr 2024 17:02:52 +0200 Subject: [PATCH] fix TypeError in iexplore.downloads when casting None to TargetPath --- dissect/target/plugins/apps/browser/iexplore.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dissect/target/plugins/apps/browser/iexplore.py b/dissect/target/plugins/apps/browser/iexplore.py index 7772b182a..0e057a68a 100644 --- a/dissect/target/plugins/apps/browser/iexplore.py +++ b/dissect/target/plugins/apps/browser/iexplore.py @@ -212,7 +212,7 @@ def downloads(self) -> Iterator[BrowserDownloadRecord]: ts_end=ts_end, browser="iexplore", id=container_record.EntryId, - path=self.target.fs.path(down_path), + path=self.target.fs.path(down_path) if down_path else None, url=down_url, size=None, state=None,