From a71220d4f3f8c5acec4e17b18573225dd0a5c125 Mon Sep 17 00:00:00 2001 From: Sjoerd Simons Date: Sun, 23 Aug 2009 21:26:17 +0100 Subject: [PATCH] Make the dir names for the logs look nicer --- libempathy/empathy-log-store-empathy.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/libempathy/empathy-log-store-empathy.c b/libempathy/empathy-log-store-empathy.c index 81cbcade..fe1afd9b 100644 --- a/libempathy/empathy-log-store-empathy.c +++ b/libempathy/empathy-log-store-empathy.c @@ -37,6 +37,7 @@ #define G_DISABLE_DEPRECATED #include +#include #include "empathy-log-store.h" #include "empathy-log-store-empathy.h" @@ -122,15 +123,16 @@ log_store_empathy_get_dir (EmpathyLogStore *self, { gchar *basedir; gchar *escaped; + const gchar *name; EmpathyLogStoreEmpathyPriv *priv; priv = GET_PRIV (self); - /* unique name is an object path, ignore the initial / and replace the others - * by % */ - escaped = g_strdup (empathy_account_get_unique_name (account) + 1); + name = empathy_account_get_unique_name (account); + if (g_str_has_prefix (name, TP_ACCOUNT_OBJECT_PATH_BASE)) + name += strlen (TP_ACCOUNT_OBJECT_PATH_BASE); - g_strdelimit (escaped, "/", '%'); + escaped = g_strdelimit (g_strdup (name), "/", '_'); if (chatroom) basedir = g_build_path (G_DIR_SEPARATOR_S, priv->basedir, escaped, -- 2.39.2