mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
fix host name checks
This commit is contained in:
parent
15a3f9d29a
commit
b560bb356e
2 changed files with 2 additions and 2 deletions
|
|
@ -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()
|
||||
|
|
|
|||
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue