1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2025-01-05 19:15:32 +00:00

sip: provider: use g_get_user_config_dir () for account config

This commit is contained in:
Evangelos Ribeiro Tzaras 2021-04-01 18:06:36 +02:00
parent 21abfb4f37
commit 5a7c22c80f

View file

@ -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);