summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Dufresne <nicolas.dufresne@collabora.co.uk>2011-03-15 14:04:07 -0400
committerNicolas Dufresne <nicolas.dufresne@collabora.co.uk>2011-03-15 14:04:07 -0400
commit3efa7d9943cf9930babba40fbcc4c12243ba46fa (patch)
tree1692b21df5c1b2e342031b38b9f01d5ba2c6c79b
parent99c16da6a594478c5888e7fc3ee8b17b98cdb64f (diff)
downloadtelepathy-logger-3efa7d9943cf9930babba40fbcc4c12243ba46fa.tar.gz
Remove faked log_id from pidgin log-store
-rw-r--r--telepathy-logger/log-store-pidgin.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/telepathy-logger/log-store-pidgin.c b/telepathy-logger/log-store-pidgin.c
index b40a214..6705053 100644
--- a/telepathy-logger/log-store-pidgin.c
+++ b/telepathy-logger/log-store-pidgin.c
@@ -765,8 +765,6 @@ log_store_pidgin_get_events_for_files (TplLogStore *self,
gchar *time_str = NULL;
gchar *timestamp_str = NULL;
gchar *body = NULL;
- gchar *log_id = NULL;
- gchar *instead_of_channel_path = NULL;
int j = i + 1;
gboolean is_user = FALSE;
gint64 timestamp;
@@ -872,23 +870,10 @@ log_store_pidgin_get_events_for_files (TplLogStore *self,
NULL, NULL);
}
-
- /* As purple logs does not have any good unique id, we
- * create one using its origin (libpurple) and telepathy's bits
- * which should identify the entity uniquely together with the log
- * timestamp */
- instead_of_channel_path = g_strconcat (
- "libpurple", tp_proxy_get_object_path (account), target_id,
- time_str, NULL);
- log_id = _tpl_create_message_token (instead_of_channel_path,
- timestamp, 0);
- g_free (instead_of_channel_path);
-
event = g_object_new (TPL_TYPE_TEXT_EVENT,
/* TplEvent */
"account", account,
/* MISSING: "channel-path", channel_path, */
- "log-id", log_id,
"receiver", receiver,
"sender", sender,
"timestamp", timestamp,