From 2f3c342b5751f0ea41b0711b6d8757471572a79c Mon Sep 17 00:00:00 2001 From: aholland <aholland@a1dutch.co.uk> Date: Mon, 24 Feb 2014 17:44:39 -0500 Subject: [PATCH] openshift war support (non express) --- src/main/java/com/gitblit/wicket/pages/GravatarProfilePage.java | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/gitblit/wicket/pages/GravatarProfilePage.java b/src/main/java/com/gitblit/wicket/pages/GravatarProfilePage.java index ee567d7..984b297 100644 --- a/src/main/java/com/gitblit/wicket/pages/GravatarProfilePage.java +++ b/src/main/java/com/gitblit/wicket/pages/GravatarProfilePage.java @@ -29,9 +29,9 @@ /** * Gravatar Profile Page shows the Gravatar information, if available. - * + * * @author James Moger - * + * */ public class GravatarProfilePage extends RootPage { @@ -49,7 +49,7 @@ } catch (IOException e) { error(MessageFormat.format(getString("gb.failedToFindGravatarProfile"), object), e, true); } - + if (profile == null) { error(MessageFormat.format(getString("gb.failedToFindGravatarProfile"), object), true); } -- Gitblit v1.9.1