From 5db810590a1fa99ff3dfb40e4fae07f8fa10b706 Mon Sep 17 00:00:00 2001 From: Kieran Eglin Date: Mon, 30 Dec 2024 17:35:49 -0800 Subject: [PATCH] Added a note about the phoenix bug --- lib/pinchflat_web/controllers/sources/source_html.ex | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/pinchflat_web/controllers/sources/source_html.ex b/lib/pinchflat_web/controllers/sources/source_html.ex index 1e113c4..57a57b4 100644 --- a/lib/pinchflat_web/controllers/sources/source_html.ex +++ b/lib/pinchflat_web/controllers/sources/source_html.ex @@ -41,6 +41,7 @@ defmodule PinchflatWeb.Sources.SourceHTML do def rss_feed_url(conn, source) do # NOTE: The reason for this concatenation is to avoid what appears to be a bug in Phoenix + # See: https://github.com/phoenixframework/phoenix/issues/6033 url(conn, ~p"/sources/#{source.uuid}/feed") <> ".xml" end