forked from mirror/pixelfed
Fix avatar bug
This commit is contained in:
parent
82f3c50766
commit
8498779430
|
@ -48,6 +48,12 @@ class CreateAvatar implements ShouldQueue
|
|||
$icon = $identicon->getIcon($hash);
|
||||
|
||||
try {
|
||||
|
||||
$baseDir = storage_path('app/public/avatars');
|
||||
if(!is_dir($baseDir)) {
|
||||
mkdir($baseDir);
|
||||
}
|
||||
|
||||
$prefix = $profile->id;
|
||||
$padded = str_pad($prefix, 12, 0, STR_PAD_LEFT);
|
||||
$parts = str_split($padded, 3);
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
*
|
||||
!.gitignore
|
||||
!default.png
|
Binary file not shown.
After Width: | Height: | Size: 212 KiB |
|
@ -0,0 +1,2 @@
|
|||
*
|
||||
!.gitignore
|
Loading…
Reference in New Issue