Skip to content

Commit

Permalink
Small catch here too.
Browse files Browse the repository at this point in the history
  • Loading branch information
breyten committed Jun 24, 2024
1 parent 699e865 commit 4dc7dbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ocd_backend/transformers/ibabs_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def report_item(self, content_type, raw_item, canonical_iri, cached_path, **kwar
attachment_file.size_in_bytes = document['FileSize']
attachment_file.name = document['DisplayName']
attachment_file.is_referenced_by = report
if datum and (datum != 'R'):
if datum and (datum not in ['R', 'B']):
attachment_file.last_discussed_at = datum
report.attachment.append(attachment_file)

Expand Down

0 comments on commit 4dc7dbc

Please sign in to comment.