From 6d23cab9f5387ca2b57f60b26936ff8af0acc8fa Mon Sep 17 00:00:00 2001 From: James Moger <james.moger@gitblit.com> Date: Fri, 19 Oct 2012 22:45:30 -0400 Subject: [PATCH] Added UserModel null check --- src/com/gitblit/utils/ActivityUtils.java | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/com/gitblit/utils/ActivityUtils.java b/src/com/gitblit/utils/ActivityUtils.java index 718ca90..e515994 100644 --- a/src/com/gitblit/utils/ActivityUtils.java +++ b/src/com/gitblit/utils/ActivityUtils.java @@ -94,7 +94,7 @@ branches.add(objectId); } Map<ObjectId, List<RefModel>> allRefs = JGitUtils - .getAllRefs(repository); + .getAllRefs(repository, model.showRemoteBranches); for (String branch : branches) { String shortName = branch; @@ -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