mirror of https://github.com/pixelfed/pixelfed.git
Merge pull request #4707 from pixelfed/staging
Update StatusTransformer
This commit is contained in:
commit
352786144b
|
@ -24,7 +24,9 @@ class StatusStatelessTransformer extends Fractal\TransformerAbstract
|
|||
{
|
||||
$taggedPeople = MediaTagService::get($status->id);
|
||||
$poll = $status->type === 'poll' ? PollService::get($status->id) : null;
|
||||
$rendered = $status->caption ? Autolink::create()->autolink($status->caption) : null;
|
||||
$rendered = config('exp.autolink') ?
|
||||
( $status->caption ? Autolink::create()->autolink($status->caption) : '' ) :
|
||||
( $status->rendered ?? $status->caption );
|
||||
|
||||
return [
|
||||
'_v' => 1,
|
||||
|
|
|
@ -28,7 +28,9 @@ class StatusTransformer extends Fractal\TransformerAbstract
|
|||
$pid = request()->user()->profile_id;
|
||||
$taggedPeople = MediaTagService::get($status->id);
|
||||
$poll = $status->type === 'poll' ? PollService::get($status->id, $pid) : null;
|
||||
$rendered = $status->caption ? Autolink::create()->autolink($status->caption) : null;
|
||||
$rendered = config('exp.autolink') ?
|
||||
( $status->caption ? Autolink::create()->autolink($status->caption) : '' ) :
|
||||
( $status->rendered ?? $status->caption );
|
||||
|
||||
return [
|
||||
'_v' => 1,
|
||||
|
|
|
@ -41,4 +41,6 @@ return [
|
|||
|
||||
// Post Update/Edits
|
||||
'pue' => env('EXP_PUE', true),
|
||||
|
||||
'autolink' => env('EXP_AUTOLINK_V2', false),
|
||||
];
|
||||
|
|
Loading…
Reference in New Issue