Skip to content

Commit

Permalink
Merge pull request #1561 from nemanjan00/patch-1
Browse files Browse the repository at this point in the history
Fix https warning
  • Loading branch information
tommy351 committed Nov 1, 2015
2 parents f7b204d + 1c2b4c1 commit 1a84bbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/plugins/helper/gravatar.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function gravatarHelper(email, options) {
options = {s: options};
}

var str = 'http://www.gravatar.com/avatar/' + md5(email.toLowerCase());
var str = 'https://www.gravatar.com/avatar/' + md5(email.toLowerCase());
var qs = querystring.stringify(options);

if (qs) str += '?' + qs;
Expand Down

0 comments on commit 1a84bbe

Please sign in to comment.