Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
obsidianforensics committed Aug 5, 2017
2 parents 8754a57 + 355ee29 commit d114fff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyhindsight/browsers/chrome.py
Original file line number Diff line number Diff line change
Expand Up @@ -1155,7 +1155,7 @@ def get_fs_path_leveldb(self, lvl_db_path):
if not isinstance(pair, tuple) or len(pair) is not 2:
logging.warning(" - Found LevelDB key/value pair that is not formed as expected ({}); skipping.".format(str(pair)))
continue
fs_path_re = re.compile(b"\x00(?P<dir>\d\d)\\\\(?P<id>\d{8})\x00")
fs_path_re = re.compile(b"\x00(?P<dir>\d\d)(\\\\|/)(?P<id>\d{8})\x00")
m = fs_path_re.search(pair[1])
if m:
nodes[pair[0]] = {"dir": m.group("dir"), "id": m.group("id")}
Expand Down

0 comments on commit d114fff

Please sign in to comment.