Missing https on gravatar in NetworkController

This commit is contained in:
Gary
2015-07-30 09:54:39 +01:00
parent 7b5274478e
commit 8a608fc80d

View File

@@ -47,7 +47,7 @@ class NetworkController implements ControllerProviderInterface
'name' => $commit->getAuthor()->getName(),
'email' => $commit->getAuthor()->getEmail(),
// due to the lack of a inbuilt javascript md5 mechanism, build the full avatar url on the php side
'image' => 'http://gravatar.com/avatar/' . md5(
'image' => '//gravatar.com/avatar/' . md5(
strtolower($commit->getAuthor()->getEmail())
) . '?s=40'
)