Răsfoiți Sursa

Update Profile, fix avatarUrl paths. Fixes #3559 #3634

Daniel Supernault 2 ani în urmă
părinte
comite
989e42497a
2 a modificat fișierele cu 6 adăugiri și 5 ștergeri
  1. 5 4
      app/Profile.php
  2. 1 1
      app/Services/MediaStorageService.php

+ 5 - 4
app/Profile.php

@@ -164,15 +164,16 @@ class Profile extends Model
 				if(substr($avatar->cdn_url, 0, 8) === 'https://') {
 					return $avatar->cdn_url;
 				} else {
-					return url($avatar->cdn_url);
+					return url('/storage/avatars/default.jpg');
 				}
 			}
 
-			if($avatar->is_remote) {
+			$path = $avatar->media_path;
+
+			if(substr($path, 0, 6) !== 'public') {
 				return url('/storage/avatars/default.jpg');
 			}
-			
-			$path = $avatar->media_path;
+
 			$path = "{$path}?v={$avatar->change_count}";
 
 			return config('app.url') . Storage::url($path);

+ 1 - 1
app/Services/MediaStorageService.php

@@ -246,7 +246,7 @@ class MediaStorageService {
 		$file = $disk->putFileAs($base, new File($tmpName), $path, 'public');
 		$permalink = $disk->url($file);
 
-		$avatar->media_path = $base . $path;
+		$avatar->media_path = $base . '/' . $path;
 		$avatar->is_remote = true;
 		$avatar->cdn_url = $local ? config('app.url') . $permalink : $permalink;
 		$avatar->size = $head['length'];