From 06ae29761440788cb47ea0f8477ccedd48a444f9 Mon Sep 17 00:00:00 2001 From: Jakub Trllo Date: Tue, 27 Feb 2024 14:10:34 +0100 Subject: [PATCH] do not cache all values and fix output value --- client/ayon_core/tools/launcher/models/actions.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/client/ayon_core/tools/launcher/models/actions.py b/client/ayon_core/tools/launcher/models/actions.py index 59f6897200..463d363e3a 100644 --- a/client/ayon_core/tools/launcher/models/actions.py +++ b/client/ayon_core/tools/launcher/models/actions.py @@ -304,7 +304,7 @@ class ActionsModel: from ayon_core.lib.applications import should_start_last_workfile if identifier in not_open_workfile_actions: - return not_open_workfile_actions[identifier] + return not not_open_workfile_actions[identifier] task_name = None task_type = None @@ -319,7 +319,6 @@ class ActionsModel: task_name, task_type ) - not_open_workfile_actions[identifier] = output return output def get_action_items(self, project_name, folder_id, task_id):