Skip to content

Commit

Permalink
Fix https warning
Browse files Browse the repository at this point in the history
When blog is on https, there is warning if all resources are not on https...
  • Loading branch information
nemanjan00 committed Oct 23, 2015
1 parent cd0d987 commit 1c2b4c1
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 1c2b4c1

Please sign in to comment.