diff options
-rw-r--r-- | libempathy/empathy-log-manager.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libempathy/empathy-log-manager.c b/libempathy/empathy-log-manager.c index 4125add7c..ce92965a9 100644 --- a/libempathy/empathy-log-manager.c +++ b/libempathy/empathy-log-manager.c @@ -72,6 +72,7 @@ log_manager_constructor (GType type, GObjectConstructParam *props) { GObject *retval; + EmpathyLogManagerPriv *priv; if (manager_singleton) { @@ -87,8 +88,8 @@ log_manager_constructor (GType type, priv = GET_PRIV (manager_singleton); - priv->sources = g_list_append (priv->sources, - empathy_log_source_empathy_get_source ()); + priv->stores = g_list_append (priv->stores, + g_object_new (EMPATHY_TYPE_LOG_STORE_EMPATHY, NULL)); } return retval; |