mirror of https://git.stjo.hn/planiverse
Send token when querying a status
If the user is logged in, send their token when querying for a status. This prevents the API returning a 404 when the status being queried is private or direct.
This commit is contained in:
parent
24dc518fc3
commit
f873271675
|
@ -22,9 +22,22 @@ class StatusController extends Controller
|
|||
// If the status hasn't been returned from performing an action,
|
||||
// we need to query for it.
|
||||
|
||||
if (session()->has('user'))
|
||||
{
|
||||
// If the user is logged in, send the token to ensure they
|
||||
// can see private and direct statuses. Otherwise the API
|
||||
// returns a 404.
|
||||
|
||||
$status = Mastodon::domain(env('MASTODON_DOMAIN'))
|
||||
->token(session('user')->token)
|
||||
->get('/statuses/' . $status_id);
|
||||
}
|
||||
else
|
||||
{
|
||||
$status = Mastodon::domain(env('MASTODON_DOMAIN'))
|
||||
->get('/statuses/' . $status_id);
|
||||
}
|
||||
}
|
||||
|
||||
$vars = [
|
||||
'status' => $status,
|
||||
|
|
Loading…
Reference in New Issue