mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
Update StatusController
This commit is contained in:
parent
905c2417ae
commit
c8737113f3
1 changed files with 2 additions and 1 deletions
|
@ -39,7 +39,8 @@ class StatusController extends Controller
|
|||
return $this->showActivityPub($request, $status);
|
||||
}
|
||||
|
||||
return view('status.show', compact('user', 'status'));
|
||||
$template = $status->in_reply_to_id ? 'status.reply' : 'status.show';
|
||||
return view($template, compact('user', 'status'));
|
||||
}
|
||||
|
||||
public function compose()
|
||||
|
|
Loading…
Reference in a new issue