Fix action copy operator

This commit is contained in:
Simon Stürz 2021-10-01 14:42:03 +02:00
parent 432ca3f883
commit 26cb281524

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