Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jerodsanto committed Sep 20, 2024
1 parent 781b32c commit 678be1d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/changelog_web/templates/email/feed_links.html.heex
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<li><a href={feed_app_url(@feed, "podcast://")}>Apple Podcasts</a></li>
</ul>

<p>Or copy/paste <%= link("this RSS feed", to: url(~p"/feed/#{@feed.slug}")) %> into any other app.</p>
<p>Or copy/paste <%= link("this RSS feed", to: url(~p"/feeds/#{@feed.slug}")) %> into any other app.</p>

<p>💚, Logbot</p>
</td>
Expand Down
2 changes: 1 addition & 1 deletion lib/changelog_web/templates/email/feed_links.text.eex
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Apple Podcasts: <%= feed_app_url(@feed, "podcast://") %>
Podcast Addict: <%= feed_app_url(@feed, "podcastaddict://") %>


Direct RSS: <%= url(~p"/feed/#{@feed.slug}") %>
Direct RSS: <%= url(~p"/feeds/#{@feed.slug}") %>


💚, Logbot
2 changes: 1 addition & 1 deletion lib/changelog_web/views/email_view.ex
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ defmodule ChangelogWeb.EmailView do
}

def feed_app_url(feed, app_prefix, strip_scheme \\ true) do
feed_url = url(~p"/feed/#{feed.slug}")
feed_url = url(~p"/feeds/#{feed.slug}")

if strip_scheme do
app_prefix <> UrlKit.sans_scheme(feed_url)
Expand Down

0 comments on commit 678be1d

Please sign in to comment.