Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Commit

Permalink
Merge pull request #6221 from ynput/bugfix/ftrack-status-mapping-fix
Browse files Browse the repository at this point in the history
Ftrack: Post-launch hook fix value lowering
  • Loading branch information
iLLiCiTiT authored Feb 19, 2024
2 parents 6657b84 + 6aa534d commit 3ad9320
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def ftrack_status_change(self, session, entity, project_name):
if key in already_tested:
continue

value = value.lower()
value = [i.lower() for i in value]
if actual_status in value or "__any__" in value:
if key != "__ignore__":
next_status_name = key
Expand Down

0 comments on commit 3ad9320

Please sign in to comment.