diff options
Diffstat (limited to 'libempathy/empathy-log-manager.c')
-rw-r--r-- | libempathy/empathy-log-manager.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libempathy/empathy-log-manager.c b/libempathy/empathy-log-manager.c index e47f50fb8..efdbae86b 100644 --- a/libempathy/empathy-log-manager.c +++ b/libempathy/empathy-log-manager.c @@ -263,6 +263,10 @@ empathy_log_manager_get_dates (EmpathyLogManager *manager, continue; } + if (!g_regex_match_simple ("\\d{8}", date, 0, 0)) { + continue; + } + dates = g_list_insert_sorted (dates, date, (GCompareFunc) strcmp); } |