Merge pull request #4358 from pixelfed/staging

Staging
pull/4394/head
daniel 2023-05-07 01:43:36 -06:00 zatwierdzone przez GitHub
commit 56f64ad5f3
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
3 zmienionych plików z 20 dodań i 2 usunięć

Wyświetl plik

@ -3675,7 +3675,8 @@ class ApiV1Controller extends Controller
->filter(function($post) {
return $post && isset($post['id']);
})
->take(3);
->take(3)
->values();
$profile['recent_posts'] = $ids;
return $profile;
})

Wyświetl plik

@ -77,7 +77,9 @@ class MediaStorageService {
protected function cloudStore($media)
{
if($media->remote_media == true) {
(new self())->remoteToCloud($media);
if(config('media.storage.remote.cloud')) {
(new self())->remoteToCloud($media);
}
} else {
(new self())->localToCloud($media);
}

Wyświetl plik

@ -6,4 +6,19 @@ return [
'exif' => [
'database' => env('MEDIA_EXIF_DATABASE', false),
],
'storage' => [
'remote' => [
/*
|--------------------------------------------------------------------------
| Store remote media on cloud/S3
|--------------------------------------------------------------------------
|
| Set this to cache remote media on cloud/S3 filesystem drivers.
| Disabled by default.
|
*/
'cloud' => env('MEDIA_REMOTE_STORE_CLOUD', false)
],
]
];