From f230b6d1b75d894c6a3fb110501237c3de3e135b Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Mon, 06 Nov 2017 16:59:38 -0500 Subject: mq_application_new(): Get current profile ID from MqProfiles --- (limited to 'src') diff --git a/src/application.c b/src/application.c index 742d7cd..24b8094 100644 --- a/src/application.c +++ b/src/application.c @@ -82,12 +82,16 @@ download_started_cb(WebKitWebContext G_GNUC_UNUSED *context, MqApplication * mq_application_new(const gchar *profile) { - MqApplication *application; + MqApplication *application; + gchar *current_profile; application = malloc(sizeof(*application)); application->profiles = mq_profiles_new(); mq_profiles_set_current(application->profiles, profile); - application->config = mq_config_new(profile, MQ_CONFIG_PROFILE_DEFAULT); + current_profile = mq_profiles_get_current(application->profiles); + application->config = mq_config_new(current_profile, + MQ_CONFIG_PROFILE_DEFAULT); + g_free(current_profile); mq_config_load(application->config); application->windows = NULL; application->tabs = g_hash_table_new_full(g_int64_hash, g_int64_equal, -- cgit v0.9.1