From 28e269365d3fb8acc483504b575886335d2144ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Forysiuk?= Date: Wed, 13 Apr 2011 22:09:22 +0200 Subject: [PATCH] Remove thumbnail files from cache by uri --- midori/midori-view.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/midori/midori-view.c b/midori/midori-view.c index a4769933..d26e3cd2 100644 --- a/midori/midori-view.c +++ b/midori/midori-view.c @@ -5745,11 +5745,13 @@ midori_view_speed_dial_save (MidoriView* view, if (g_str_equal (action, "delete")) { - gchar* file_path = sokoke_build_thumbnail_path (parts[1]); + gchar* uri = g_key_file_get_string (key_file, dial_id, "uri", NULL); + gchar* file_path = sokoke_build_thumbnail_path (uri); g_key_file_remove_group (key_file, dial_id, NULL); g_unlink (file_path); + g_free (uri); g_free (file_path); } else if (g_str_equal (action, "add"))