diff --git a/app/Actions/RSS/Generate.php b/app/Actions/RSS/Generate.php index 5f152a7f61..34dcf7d0b7 100644 --- a/app/Actions/RSS/Generate.php +++ b/app/Actions/RSS/Generate.php @@ -25,7 +25,7 @@ public function __construct(PhotoQueryPolicy $photoQueryPolicy) private function create_link_to_page(Photo $photo_model): string { if ($photo_model->album_id !== null) { - return url('/#' . $photo_model->album_id . '/' . $photo_model->id); + return url('/gallery#' . $photo_model->album_id . '/' . $photo_model->id); } return url('/view?p=' . $photo_model->id);