Skip to content

Commit

Permalink
fix /comments.rss template lookup
Browse files Browse the repository at this point in the history
  • Loading branch information
pushcx committed Jul 20, 2022
1 parent 29ceb06 commit 00afd48
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/controllers/comments_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ def index
@title = "Private comments feed for #{@user.username}"
end

render :action => "index.rss", :layout => false
render :action => "index", :layout => false
}
end
end
Expand Down Expand Up @@ -318,7 +318,7 @@ def upvoted
@title = "Upvoted comments feed for #{@user.username}"
end

render :action => "index.rss", :layout => false
render :action => "index", :layout => false
}
end
end
Expand Down

0 comments on commit 00afd48

Please sign in to comment.