1
0
mirror of https://github.com/irssi/irssi.git synced 2024-07-21 03:14:16 -04:00

add timezone to g_date_time_new_from_iso8601 call

This commit is contained in:
Ailin Nemui 2022-12-18 16:34:15 +01:00
parent 8d7449d26f
commit 1453f46fcf
2 changed files with 9 additions and 2 deletions

View File

@ -57,6 +57,7 @@ static int skip_next_printtext;
static char *log_theme_name;
static char **autolog_ignore_targets;
static GTimeZone *utc;
static char *log_colorizer_strip(const char *str)
{
@ -542,7 +543,7 @@ static void log_line(TEXT_DEST_REC *dest, const char *text)
char *val;
if ((val = g_hash_table_lookup(dest->meta, "time")) != NULL) {
GDateTime *time;
if ((time = g_date_time_new_from_iso8601(val, NULL)) != NULL) {
if ((time = g_date_time_new_from_iso8601(val, utc)) != NULL) {
t = g_date_time_to_unix(time);
g_date_time_unref(time);
}
@ -744,6 +745,7 @@ void fe_log_init(void)
{
autoremove_tag = g_timeout_add(60000, (GSourceFunc) sig_autoremove, NULL);
skip_next_printtext = FALSE;
utc = g_time_zone_new_utc();
settings_add_bool("log", "awaylog_colors", TRUE);
settings_add_bool("log", "autolog", FALSE);
@ -811,6 +813,7 @@ void fe_log_deinit(void)
if (autolog_ignore_targets != NULL)
g_strfreev(autolog_ignore_targets);
g_time_zone_unref(utc);
g_free_not_null(autolog_path);
g_free_not_null(log_theme_name);
}

View File

@ -18,6 +18,7 @@ TEXT_BUFFER_REC *color_buf;
gboolean scrollback_format;
gboolean show_server_time;
int signal_gui_render_line_text;
GTimeZone *utc;
static void collector_free(GSList **collector)
{
@ -125,7 +126,7 @@ static LINE_INFO_META_REC *line_meta_create(GHashTable *meta_hash)
while (g_hash_table_iter_next(&iter, (gpointer *) &key, (gpointer *) &val)) {
if (g_strcmp0("time", key) == 0) {
GDateTime *time;
if ((time = g_date_time_new_from_iso8601(val, NULL)) != NULL) {
if ((time = g_date_time_new_from_iso8601(val, utc)) != NULL) {
meta->server_time = g_date_time_to_unix(time);
g_date_time_unref(time);
}
@ -446,6 +447,7 @@ static void read_settings(void)
void textbuffer_formats_init(void)
{
signal_gui_render_line_text = signal_get_uniq_id("gui render line text");
utc = g_time_zone_new_utc();
settings_add_bool("lookandfeel", "scrollback_format", TRUE);
settings_add_bool("lookandfeel", "show_server_time", FALSE);
@ -463,4 +465,6 @@ void textbuffer_formats_deinit(void)
signal_remove("print format", (SIGNAL_FUNC) sig_print_format);
signal_remove("print noformat", (SIGNAL_FUNC) sig_print_noformat);
signal_remove("gui print text finished", (SIGNAL_FUNC) sig_gui_print_text_finished);
g_time_zone_unref(utc);
}