Skip to content

Commit

Permalink
Optimize header check when reading records (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
ydkhatri authored Dec 28, 2023
1 parent 67b1aaf commit 5c55db6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dissect/esedb/record.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ def get(self, column: Column, raw: bool = False) -> RecordValue:
value = None
tag_field = None

if not self.header:
if self.header is None:
return value

if column.is_fixed:
Expand Down

0 comments on commit 5c55db6

Please sign in to comment.