diff --git a/src/HasProfilePhoto.php b/src/HasProfilePhoto.php index 33e3a4132..d5bb4ced8 100644 --- a/src/HasProfilePhoto.php +++ b/src/HasProfilePhoto.php @@ -76,6 +76,6 @@ protected function defaultProfilePhotoUrl() */ protected function profilePhotoDisk() { - return isset($_ENV['VAPOR_ARTIFACT_NAME']) ? 's3' : 'public'; + return isset($_ENV['VAPOR_ARTIFACT_NAME']) ? 's3' : config('jetstream.profile_photo_disk', 'public'); } }