diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2020-05-03 22:19:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-03 22:19:24 +0200 |
commit | 5cff7910c2c519af2d255454b66b0bfa6cf5288c (patch) | |
tree | 5c9d0acd91e6f8f011c502ea9ba2a51631e435ce /app/controllers | |
parent | c0b849bdfda8a2386bc85836d2d181890746de98 (diff) |
Add more ActivityPub controller tests (#13590)
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/accounts_controller.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/controllers/accounts_controller.rb b/app/controllers/accounts_controller.rb index b35b2279e..db9f45b4e 100644 --- a/app/controllers/accounts_controller.rb +++ b/app/controllers/accounts_controller.rb @@ -40,7 +40,7 @@ class AccountsController < ApplicationController format.rss do expires_in 1.minute, public: true - @statuses = filtered_statuses.without_reblogs.without_replies.limit(PAGE_SIZE) + @statuses = filtered_statuses.without_reblogs.limit(PAGE_SIZE) @statuses = cache_collection(@statuses, Status) render xml: RSS::AccountSerializer.render(@account, @statuses, params[:tag]) end @@ -129,11 +129,11 @@ class AccountsController < ApplicationController end def media_requested? - request.path.ends_with?('/media') && !tag_requested? + request.path.split('.').first.ends_with?('/media') && !tag_requested? end def replies_requested? - request.path.ends_with?('/with_replies') && !tag_requested? + request.path.split('.').first.ends_with?('/with_replies') && !tag_requested? end def tag_requested? |