atom feeds: fix deprecation warnings in *_path helpers.

DEPRECATION WARNING: You are calling a `*_path` helper with the
`only_path` option explicitly set to `false`. This option will stop
working on path helpers in Rails 5. Use the corresponding `*_url` helper
instead.
This commit is contained in:
evazion
2017-07-01 11:45:28 -05:00
parent d7690d24b0
commit 1c06ae9f81
3 changed files with 3 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
atom_feed(root_url: forum_topic_path(@forum_topic, host: Danbooru.config.hostname, only_path: false)) do |feed|
atom_feed(root_url: forum_topic_url(@forum_topic, host: Danbooru.config.hostname)) do |feed|
feed.title(@forum_topic.title)
feed.updated(@forum_topic.try(:updated_at))