Skip to content

Commit

Permalink
uuid type conversion error to fix #11536
Browse files Browse the repository at this point in the history
  • Loading branch information
aarongundel committed Oct 10, 2024
1 parent 40590c8 commit 0d9b3a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arches/app/models/resource.py
Original file line number Diff line number Diff line change
Expand Up @@ -887,8 +887,8 @@ def get_relations(
)
filtered_instances = filtered_instances if user is not None else []

resourceid_to_permission = resourceid_to not in filtered_instances
resourceid_from_permission = resourceid_from not in filtered_instances
resourceid_to_permission = str(resourceid_to) not in filtered_instances
resourceid_from_permission = str(resourceid_from) not in filtered_instances

if exclusive_set:
resourceid_to_permission = not (resourceid_to_permission)
Expand Down

0 comments on commit 0d9b3a1

Please sign in to comment.