node: update state in the skeleton

This commit is contained in:
Wim Taymans 2016-07-20 18:04:34 +02:00
parent f7d02c8d77
commit 31041a4e16

View file

@ -758,6 +758,7 @@ pinos_node_update_state (PinosNode *node,
if (priv->state != state) {
g_debug ("node %p: update state to %s", node, pinos_node_state_as_string (state));
priv->state = state;
pinos_node1_set_state (priv->iface, state);
g_object_notify (G_OBJECT (node), "state");
}
}