We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent afcf3dd commit 976269dCopy full SHA for 976269d
1 file changed
dissect/database/ese/ntds/query.py
@@ -124,6 +124,7 @@ def _process_or_operation(self, filter: SearchFilter, records: Iterator[Record]
124
Yields:
125
Records matching any condition in the OR operation.
126
"""
127
+ records = list(records) if records is not None else None
128
for child in filter.children:
129
yield from self._process_query(child, records=records)
130
0 commit comments