[empathy/mc5] Make the dir names for the logs look nicer



commit a71220d4f3f8c5acec4e17b18573225dd0a5c125
Author: Sjoerd Simons <sjoerd simons collabora co uk>
Date:   Sun Aug 23 21:26:17 2009 +0100

    Make the dir names for the logs look nicer

 libempathy/empathy-log-store-empathy.c |   10 ++++++----
 1 files changed, 6 insertions(+), 4 deletions(-)
---
diff --git a/libempathy/empathy-log-store-empathy.c b/libempathy/empathy-log-store-empathy.c
index 81cbcad..fe1afd9 100644
--- a/libempathy/empathy-log-store-empathy.c
+++ b/libempathy/empathy-log-store-empathy.c
@@ -37,6 +37,7 @@
 #define G_DISABLE_DEPRECATED
 
 #include <telepathy-glib/util.h>
+#include <telepathy-glib/defs.h>
 
 #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,



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]