diff --git a/app/views/list/list.rss.erb b/app/views/list/list.rss.erb index 8824eeb86b0..0895d208dab 100644 --- a/app/views/list/list.rss.erb +++ b/app/views/list/list.rss.erb @@ -20,7 +20,7 @@ <%= topic.category.name %> -

<%= t('author_wrote', author: link_to("@#{username}", "#{Discourse.base_url}/u/#{topic.user.username_lower}")).html_safe %>

+

<%= t('author_wrote', author: link_to("@#{username}", "#{Discourse.base_url}/u/#{url_encode(topic.user.username_lower)}")).html_safe %>

<% end %>
<%- if first_post = topic.ordered_posts.first %> diff --git a/app/views/topics/show.rss.erb b/app/views/topics/show.rss.erb index 729fa86071d..2a71f1f1635 100644 --- a/app/views/topics/show.rss.erb +++ b/app/views/topics/show.rss.erb @@ -18,7 +18,7 @@ ]]> -

<%= t('author_wrote', author: link_to("@#{post.user.username}", user_url(post.user.username_lower))).html_safe %>

+

<%= t('author_wrote', author: link_to("@#{post.user.username}", "#{Discourse.base_url}/u/#{url_encode(post.user.username_lower)}")).html_safe %>

<% if post.hidden %> <%= t('flagging.user_must_edit').html_safe %>