Fix action copy operator

pull/465/head
Simon Stürz 2021-10-01 14:42:03 +02:00
parent 432ca3f883
commit 26cb281524
1 changed files with 2 additions and 0 deletions

View File

@ -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();
}