Laravel Pint fixes

This commit is contained in:
Jonny Barnes 2024-03-23 21:24:33 +00:00
parent cbbe87e23c
commit 1f9a8fee99
Signed by: jonny
SSH key fingerprint: SHA256:CTuSlns5U7qlD9jqHvtnVmfYV3Zwl2Z7WnJ4/dqOaL8

View file

@ -56,7 +56,7 @@ class SyndicateNoteToBluesky implements ShouldQueue
// Parse for syndication URL // Parse for syndication URL
if ($response->getStatusCode() === 201) { if ($response->getStatusCode() === 201) {
$this->note->bluesky_url = $response->getHeader('Location')[0];; $this->note->bluesky_url = $response->getHeader('Location')[0];
$this->note->save(); $this->note->save();
} }
} }