Skip to content

Commit

Permalink
Merge pull request #329 from BigRoy/bugfix/fix_project_entity_uris
Browse files Browse the repository at this point in the history
Fix the returned entity URIs for representation entity type.
  • Loading branch information
martastain authored Aug 30, 2024
2 parents 39396c1 + e57f70b commit 7770644
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/uris/queries.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ async def representation_uris(
version = row["version"]
version_name = f"v{version:03d}"
uri = f"ayon+entity://{project_name}/{path}"
uri += f"&product={row['product']}"
uri += f"?product={row['product']}"
uri += f"&version={version_name}"
uri += f"&representation={row['repre']}"
result.append((id, uri))
Expand Down

0 comments on commit 7770644

Please sign in to comment.