From 33622b7acfa037d0218dd7a9d62b4831015768f3 Mon Sep 17 00:00:00 2001 From: James Moger <james.moger@gitblit.com> Date: Thu, 20 Sep 2012 08:59:22 -0400 Subject: [PATCH] Revised delete branch feature (issue 121) --- src/com/gitblit/utils/ActivityUtils.java | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/com/gitblit/utils/ActivityUtils.java b/src/com/gitblit/utils/ActivityUtils.java index 718ca90..02a9924 100644 --- a/src/com/gitblit/utils/ActivityUtils.java +++ b/src/com/gitblit/utils/ActivityUtils.java @@ -160,7 +160,7 @@ } String emailHash = StringUtils.getMD5(email); String url = MessageFormat.format( - "http://www.gravatar.com/avatar/{0}?s={1,number,0}&d=identicon", emailHash, width); + "https://www.gravatar.com/avatar/{0}?s={1,number,0}&d=identicon", emailHash, width); return url; } @@ -174,7 +174,7 @@ * @throws IOException */ public static GravatarProfile getGravatarProfile(String hash) throws IOException { - String url = MessageFormat.format("http://www.gravatar.com/{0}.json", hash); + String url = MessageFormat.format("https://www.gravatar.com/{0}.json", hash); // Gravatar has a complex json structure Type profileType = new TypeToken<Map<String, List<GravatarProfile>>>() { }.getType(); -- Gitblit v1.9.1