From 8865b2e58f1623b6271ee51a72ab9439162adf99 Mon Sep 17 00:00:00 2001 From: Daniel Carl Date: Sun, 2 Jun 2013 18:58:26 +0200 Subject: [PATCH] Fixed wrong sorting of url history entries (#31). In opposition to the function comment the history list contained the latest entries first. --- src/history.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/history.c b/src/history.c index 176c516..21f2a65 100644 --- a/src/history.c +++ b/src/history.c @@ -250,6 +250,8 @@ static GList *load(const char *file) } } + list = g_list_reverse(list); + return list; } -- 2.20.1