From 5a7c22c80fdd8c58f3674ba29d868c2a9b293de2 Mon Sep 17 00:00:00 2001 From: Evangelos Ribeiro Tzaras Date: Thu, 1 Apr 2021 18:06:36 +0200 Subject: [PATCH] sip: provider: use g_get_user_config_dir () for account config --- plugins/sip/calls-sip-provider.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/sip/calls-sip-provider.c b/plugins/sip/calls-sip-provider.c index b1a4ef1..182a659 100644 --- a/plugins/sip/calls-sip-provider.c +++ b/plugins/sip/calls-sip-provider.c @@ -385,7 +385,7 @@ static void calls_sip_provider_init (CallsSipProvider *self) { self->origins = g_list_store_new (CALLS_TYPE_SIP_ORIGIN); - self->filename = g_build_filename (g_get_user_data_dir (), + self->filename = g_build_filename (g_get_user_config_dir (), APP_DATA_NAME, SIP_ACCOUNT_FILE, NULL);