From 6ccfb136cd56ff36c3f33b6af8e7e32af95ae03c Mon Sep 17 00:00:00 2001 From: Samuel Creshal Date: Sat, 13 Mar 2010 20:08:40 +0100 Subject: [PATCH] Load cached icons from http and https --- katze/katze-utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/katze/katze-utils.c b/katze/katze-utils.c index d3e93d6d..b81868ae 100644 --- a/katze/katze-utils.c +++ b/katze/katze-utils.c @@ -1458,7 +1458,7 @@ katze_load_cached_icon (const gchar* uri, { GdkPixbuf* icon = NULL; - if (g_str_has_prefix (uri, "http://")) + if (g_str_has_prefix (uri, "http://") || g_str_has_prefix (uri,"https://")) { guint i; gchar* icon_uri;