Skip to content

Commit 54bd67b

Browse files
authored
Merge pull request #1629 from shikorism/develop
Release 2025.12.0
2 parents b49caf4 + 64bbcff commit 54bd67b

File tree

7 files changed

+1090
-651
lines changed

7 files changed

+1090
-651
lines changed

app/User.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ class User extends Authenticatable
5454
*/
5555
public function getProfileImageUrl($size = 30): string
5656
{
57-
$hash = md5(strtolower(trim($this->email)));
57+
$hash = hash('sha256', strtolower(trim($this->email)));
5858

5959
return '//www.gravatar.com/avatar/' . $hash . '?s=' . $size . '&d=retro';
6060
}

0 commit comments

Comments
 (0)