summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2013-09-17 16:10:56 +0100
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2013-09-23 16:12:02 +0100
commit57f23a80ecf77829a74525205036d61fd59e5904 (patch)
tree2ce9c0fdb467da39627a884d4c0043910e179995
parent6edf26eca064f10f790bfa925131a100c60f68e5 (diff)
downloadtelepathy-haze-57f23a80ecf77829a74525205036d61fd59e5904.tar.gz
haze_im_channel_get_property: fix a TP_SEAL error
Bug: https://bugs.freedesktop.org/show_bug.cgi?id=69619 Reviewed-by: Guillaume Desmottes <guillaume.desmottes@collabora.co.uk>
-rw-r--r--src/im-channel.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/im-channel.c b/src/im-channel.c
index bd74baa..d17b4b2 100644
--- a/src/im-channel.c
+++ b/src/im-channel.c
@@ -466,7 +466,8 @@ haze_im_channel_get_property (GObject *object,
}
case PROP_REQUESTED:
g_value_set_boolean (value,
- (priv->initiator == base_conn->self_handle));
+ (priv->initiator ==
+ tp_base_connection_get_self_handle (base_conn)));
break;
case PROP_CONNECTION:
g_value_set_object (value, priv->conn);