From 26cb2815242c0da44174f457eb0785b718c15310 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20St=C3=BCrz?= Date: Fri, 1 Oct 2021 14:42:03 +0200 Subject: [PATCH] Fix action copy operator --- libnymea/types/action.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libnymea/types/action.cpp b/libnymea/types/action.cpp index b6cb1bd6..02b87ff9 100644 --- a/libnymea/types/action.cpp +++ b/libnymea/types/action.cpp @@ -147,4 +147,6 @@ void Action::operator =(const Action &other) { m_actionTypeId = other.actionTypeId(); m_params = other.params(); + m_thingId = other.thingId(); + m_triggeredBy = other.triggeredBy(); }