forked from mirror/pixelfed
Update ApiV1Controller, fix version on instance endpoint
This commit is contained in:
parent
4ab99d66d1
commit
a6261221ad
1 changed files with 2 additions and 2 deletions
|
@ -1177,7 +1177,7 @@ class ApiV1Controller extends Controller
|
||||||
*/
|
*/
|
||||||
public function instance(Request $request)
|
public function instance(Request $request)
|
||||||
{
|
{
|
||||||
$res = Cache::remember('api:v1:instance-data-response', 900, function () {
|
$res = Cache::remember('api:v1:instance-data-response-v0', 1800, function () {
|
||||||
$contact = Cache::remember('api:v1:instance-data:contact', 604800, function () {
|
$contact = Cache::remember('api:v1:instance-data:contact', 604800, function () {
|
||||||
$admin = User::whereIsAdmin(true)->first();
|
$admin = User::whereIsAdmin(true)->first();
|
||||||
return $admin && isset($admin->profile_id) ?
|
return $admin && isset($admin->profile_id) ?
|
||||||
|
@ -1212,7 +1212,7 @@ class ApiV1Controller extends Controller
|
||||||
'short_description' => 'Pixelfed is an image sharing platform, an ethical alternative to centralized platforms',
|
'short_description' => 'Pixelfed is an image sharing platform, an ethical alternative to centralized platforms',
|
||||||
'description' => 'Pixelfed is an image sharing platform, an ethical alternative to centralized platforms',
|
'description' => 'Pixelfed is an image sharing platform, an ethical alternative to centralized platforms',
|
||||||
'email' => config('instance.email'),
|
'email' => config('instance.email'),
|
||||||
'version' => config('pixelfed.version'),
|
'version' => '2.7.2 (compatible; Pixelfed ' . config('pixelfed.version') .')',
|
||||||
'urls' => [],
|
'urls' => [],
|
||||||
'stats' => $stats,
|
'stats' => $stats,
|
||||||
'thumbnail' => url('headers/default.jpg'),
|
'thumbnail' => url('headers/default.jpg'),
|
||||||
|
|
Loading…
Reference in a new issue