From ba11d737e4f8607b67c9a16f1243f26359acf418 Mon Sep 17 00:00:00 2001 From: John Jackson <37978984+johnridesabike@users.noreply.github.com> Date: Wed, 19 Mar 2025 14:03:26 -0400 Subject: [PATCH] Fix entry links --- app/views/jobs/index.atom.builder | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/jobs/index.atom.builder b/app/views/jobs/index.atom.builder index aa0b1bf..1da1272 100644 --- a/app/views/jobs/index.atom.builder +++ b/app/views/jobs/index.atom.builder @@ -31,7 +31,7 @@ xml.feed("xmlns" => "http://www.w3.org/2005/Atom") do xml.entry do xml.title job.title xml.updated job.published_at.iso8601 - xml.link job_url(job) + xml.link("href" => job_url(job)) xml.id job_url(job) xml.author { xml.name(job.user&.email) }