Skip to content

Commit

Permalink
Merge pull request #17 from abr4xas/feature/improvements-in-gravatar-…
Browse files Browse the repository at this point in the history
…over-random-profile-images

Feature/improvements in gravatar over random profile images
  • Loading branch information
themsaid authored Nov 9, 2018
2 parents 6adc253 + be1942d commit 6da5749
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/WinkAuthor.php
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ public function getRememberTokenName()
*/
public function getAvatarAttribute($value)
{
return $value ?: 'http://www.gravatar.com/avatar/' . md5(strtolower(trim($this->email))) . '?s=80';
return $value ?: 'https://secure.gravatar.com/avatar/' . md5(strtolower(trim($this->email))) . '?s=80';
}

/**
Expand Down

0 comments on commit 6da5749

Please sign in to comment.