Skip to content

Commit

Permalink
fix version comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
iLLiCiTiT committed Nov 29, 2024
1 parent 7c3cc83 commit 8791324
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ayon_api/server_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -1799,7 +1799,7 @@ def enroll_event_job(
):
kwargs["ignoreOlderThan"] = ignore_older_than
if ignore_sender_types is not None:
if (major, minor, patch) > (1, 5, 4):
if (major, minor, patch) <= (1, 5, 4):
raise ValueError(
"Ignore sender types are not supported for"
f" your version of server {self.server_version}."
Expand Down

0 comments on commit 8791324

Please sign in to comment.