We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1172333 commit 66d15d4Copy full SHA for 66d15d4
lib/tableau/extensions/rss_extension.ex
@@ -40,9 +40,9 @@ defmodule Tableau.RSSExtension do
40
"""
41
<item>
42
<title>#{post.title}</title>
43
- <link>https://#{Path.join(url, post.permalink)}</link>
+ <link>#{URI.merge(url, post.permalink)}</link>
44
<pubDate>#{Calendar.strftime(post.date, "%a, %d %b %Y %X %Z")}</pubDate>
45
- <guid>http://#{Path.join(url, post.permalink)}</guid>
+ <guid>#{URI.merge(url, post.permalink)}</guid>
46
<description><![CDATA[ #{post.body} ]]></description>
47
</item>
48
0 commit comments