Update profile model, improve avatarUrl fallback

pull/4164/head
Daniel Supernault 2023-02-08 01:27:32 -07:00
rodzic f6a588f9cf
commit 620ee826d1
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 0DEF1C662C9033F7
1 zmienionych plików z 8 dodań i 0 usunięć

Wyświetl plik

@ -160,6 +160,10 @@ class Profile extends Model
$url = Cache::remember('avatar:'.$this->id, 1209600, function () {
$avatar = $this->avatar;
if(!$avatar) {
return url('/storage/avatars/default.jpg');
}
if($avatar->cdn_url) {
if(substr($avatar->cdn_url, 0, 8) === 'https://') {
return $avatar->cdn_url;
@ -170,6 +174,10 @@ class Profile extends Model
$path = $avatar->media_path;
if(!$path) {
return url('/storage/avatars/default.jpg');
}
if(substr($path, 0, 6) !== 'public') {
return url('/storage/avatars/default.jpg');
}