fix: keywrods should separate by comma
This commit is contained in:
parent
04ac723c12
commit
9a39d89ce8
1 changed files with 2 additions and 2 deletions
|
@ -18,7 +18,7 @@
|
|||
<itunes:category text="<%= @podcast.category %>">
|
||||
<itunes:category text="<%= @podcast.category %>" />
|
||||
</itunes:category>
|
||||
<itunes:keywords><%= "FIXME!!!" %></itunes:keywords>
|
||||
<itunes:keywords><%= @podcast.keywords |> Enum.join(", ") %></itunes:keywords>
|
||||
<itunes:explicit><%= @podcast.explicit %></itunes:explicit>
|
||||
<itunes:image href="<%= @podcast.image.url %>" />
|
||||
<atom:link href="http://www.ape-alveare.it/podcast.xml" rel="self" type="application/rss+xml" />
|
||||
|
@ -39,7 +39,7 @@
|
|||
<guid><%= item.link %></guid>
|
||||
<itunes:duration><%= item.length |> format_length %></itunes:duration>
|
||||
<itunes:summary><%= item.summary %></itunes:summary>
|
||||
<itunes:keywords><%= item.keywords %></itunes:keywords>
|
||||
<itunes:keywords><%= item.keywords |> Enum.join(", ") %></itunes:keywords>
|
||||
<itunes:explicit><%= item.explicit %></itunes:explicit>
|
||||
</item>
|
||||
<% end %>
|
||||
|
|
Loading…
Reference in a new issue