diff options
Diffstat (limited to 'gtk/src/main.c')
-rw-r--r-- | gtk/src/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gtk/src/main.c b/gtk/src/main.c index d1a002a11..d73538473 100644 --- a/gtk/src/main.c +++ b/gtk/src/main.c @@ -420,9 +420,10 @@ IoRedirect(signal_user_data_t *ud) } // Open activity log. // TODO: Put this in the same directory as the encode destination - config = ghb_get_user_config_dir(); + config = ghb_get_user_config_dir(NULL); path = g_strdup_printf("%s/%s", config, "Activity.log"); ud->activity_log = g_io_channel_new_file (path, "w", NULL); + ud->job_activity_log = NULL; ghb_ui_update(ud, "activity_location", ghb_string_value(path)); g_free(path); g_free(config); |