From e050625a29bbc3d29b0de18d8df1d9635c24be59 Mon Sep 17 00:00:00 2001 From: Go MAEDA Date: Fri, 15 Mar 2019 03:14:26 +0000 Subject: Always use HTTPS when accessing gravatar.com (#31022). Patch by Go MAEDA. git-svn-id: http://svn.redmine.org/redmine/trunk@17948 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- lib/plugins/gravatar/lib/gravatar.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/plugins/gravatar/lib/gravatar.rb b/lib/plugins/gravatar/lib/gravatar.rb index 9ccc6166b..7c2fca6d3 100644 --- a/lib/plugins/gravatar/lib/gravatar.rb +++ b/lib/plugins/gravatar/lib/gravatar.rb @@ -1,4 +1,4 @@ -# frozen_string_literal: false +# frozen_string_literal: true require 'digest/md5' require 'cgi' @@ -63,7 +63,7 @@ module GravatarHelper # Returns the base Gravatar URL for the given email hash def gravatar_api_url(hash) - "//www.gravatar.com/avatar/#{hash}" + 'https://www.gravatar.com/avatar/' + hash.to_s end # Return the gravatar URL for the given email address. -- cgit v1.2.3