summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/mcd-connection.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mcd-connection.c b/src/mcd-connection.c
index 1d71da4e..e04ff78f 100644
--- a/src/mcd-connection.c
+++ b/src/mcd-connection.c
@@ -1626,10 +1626,10 @@ on_inactivity_changed (McdSlacker *slacker,
McdConnection *self)
{
McdConnectionPrivate *priv = self->priv;
- DEBUG ("%sactive, %s have power saving iface.", inactive ? "in" : "",
- priv->has_power_saving_if ? "has" : "doesn't");
+ DEBUG ("%sactive, connection %s have power saving iface.", inactive ? "in" : "",
+ priv->has_power_saving_if ? "does" : "doesn't");
- if (priv->has_power_saving_if)
+ if (priv->tp_conn != NULL && priv->has_power_saving_if)
tp_cli_connection_interface_power_saving_call_set_power_saving (priv->tp_conn, -1,
inactive, NULL, NULL, NULL, NULL);
}