Fix avatar bug

This commit is contained in:
Daniel Supernault 2018-05-31 22:07:29 -06:00
parent 82f3c50766
commit 8498779430
4 changed files with 11 additions and 0 deletions

View File

@ -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);

3
storage/app/public/avatars/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
*
!.gitignore
!default.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 212 KiB

2
storage/debugbar/.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
*
!.gitignore