Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ Changelog
5.1.21 (unreleased)
-------------------

- Nothing changed yet.
- Improved check on UO relations.
[daniele]


5.1.20 (2025-07-14)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ def get_services(self):
)

for rel in relations:
if not rel.from_id:
continue
obj = intids.queryObject(rel.from_id)
if (
obj is not None
Expand Down