Skip to content

Commit

Permalink
fix linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Niehztog committed Nov 12, 2023
1 parent 76235cc commit 8450a33
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions actions/FeedIconAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@ public function execute(array $request): void

if ($imageData && $mimeType) {
$this->sendImageResponse($mimeType, $imageData);
}
elseif('' === $imageData && '' === $mimeType) {
} elseif ('' === $imageData && '' === $mimeType) {
// empty values means that the image was broken and could not be loaded
$this->sendNotFoundResponse();
}
Expand Down

0 comments on commit 8450a33

Please sign in to comment.