From b6bd153b309b86b9b9902ef2fce9565d31c4e884 Mon Sep 17 00:00:00 2001 From: Divine Threepwood Date: Tue, 14 Jan 2020 02:50:04 +0100 Subject: [PATCH] fix returning on outdated action description instead of the updated one containing the related action impact list. This bug inhibits the cancelation of intermediary action impacts and is related to issue #165 --- .../bco/dal/control/layer/unit/scene/SceneControllerImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/control/src/main/java/org/openbase/bco/dal/control/layer/unit/scene/SceneControllerImpl.java b/control/src/main/java/org/openbase/bco/dal/control/layer/unit/scene/SceneControllerImpl.java index 0885fa3c..1bb25678 100644 --- a/control/src/main/java/org/openbase/bco/dal/control/layer/unit/scene/SceneControllerImpl.java +++ b/control/src/main/java/org/openbase/bco/dal/control/layer/unit/scene/SceneControllerImpl.java @@ -299,7 +299,7 @@ protected Future internalApplyActionAuthenticated(final Authe applyDataUpdate(activationStateBuilder, ServiceType.ACTIVATION_STATE_SERVICE); // return the generated action description - return actionDescriptionBuilder.build(); + return actionDescriptionBuilderNew.build(); }, activationStateOperationService.setActivationState(activationStateBuilder.build())); } catch (CouldNotPerformException ex) {