Skip to content

Commit

Permalink
Fix null error on EntryPageFactory (#1289)
Browse files Browse the repository at this point in the history
  • Loading branch information
BentiGorlich authored Dec 11, 2024
1 parent b674237 commit c60b446
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Factory/ActivityPub/EntryPageFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public function getActivityPubId(Entry $entry): string
);
}

private function getUrl(Entry $entry): string
private function getUrl(Entry $entry): ?string
{
$imageUrl = $this->imageManager->getUrl($entry->image);

Expand Down

0 comments on commit c60b446

Please sign in to comment.