aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2014-03-01 10:34:42 +0100
committerGuido Günther <agx@sigxcpu.org>2014-03-01 10:34:42 +0100
commitd64eea978d7eaf7ebe7555d91ac418a836c97a8a (patch)
tree3902c6db35c92d87ed9aa0af0f558f352535976a
parenta76ea3fbda245337ddd85c7f92cb8fdf0917835b (diff)
Fix departure time
%m returnd the month so we always looked at departues starting close to the full hour.
-rw-r--r--src/providers/de-db.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/providers/de-db.c b/src/providers/de-db.c
index 6857eb4..5c687b0 100644
--- a/src/providers/de-db.c
+++ b/src/providers/de-db.c
@@ -686,7 +686,7 @@ lpf_provider_de_db_get_trips (LpfProvider *self,
goto out;
datestr = g_date_time_format (date, "%d.%m.%y");
- timestr = g_date_time_format (date, "%H:%m");
+ timestr = g_date_time_format (date, "%H:%M");
start_id = lpf_loc_get_opaque(start);
end_id = lpf_loc_get_opaque(end);