fix host name checks

This commit is contained in:
Jakub Trllo 2025-08-28 12:19:56 +02:00
parent 15a3f9d29a
commit b560bb356e
2 changed files with 2 additions and 2 deletions

View file

@ -33,7 +33,7 @@ class DeliveryAction(LoaderActionPlugin):
def get_action_items(
self, selection: LoaderActionSelection
) -> list[LoaderActionItem]:
if self.host_name is None:
if self.host_name is not None:
return []
version_ids = set()

View file

@ -44,7 +44,7 @@ class ExportOTIO(LoaderActionPlugin):
self, selection: LoaderActionSelection
) -> list[LoaderActionItem]:
# Don't show in hosts
if self.host_name is None:
if self.host_name is not None:
return []
version_ids = set()