Fix copy constructor of Action class

pull/465/head
Simon Stürz 2021-10-01 15:13:00 +02:00
parent 26cb281524
commit 1e2df2eb7c
1 changed files with 2 additions and 1 deletions

View File

@ -57,7 +57,8 @@ Action::Action(const ActionTypeId &actionTypeId, const ThingId &thingId, Trigger
Action::Action(const Action &other):
m_actionTypeId(other.actionTypeId()),
m_thingId(other.thingId()),
m_params(other.params())
m_params(other.params()),
m_triggeredBy(other.triggeredBy())
{
}