Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Avoid hard-coding http for gravatars
Browse files Browse the repository at this point in the history
This should fix the warning: "The page at https://zanata... displayed
insecure content from http://www.gravatar.com/avatar/..."
  • Loading branch information
seanf committed Oct 22, 2013
1 parent cfeca1f commit f480c1a
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -12,7 +12,7 @@
@Name("gravatarServiceImpl")
@Scope(ScopeType.STATELESS)
public class GravatarServiceImpl implements GravatarService {
private static String GRAVATAR_URL = "http://www.gravatar.com/avatar/";
private static String GRAVATAR_URL = "//www.gravatar.com/avatar/";

@In(required = false, value = JpaIdentityStore.AUTHENTICATED_USER)
HAccount authenticatedAccount;
Expand Down

0 comments on commit f480c1a

Please sign in to comment.