aboutsummaryrefslogtreecommitdiff
path: root/app/controllers/follower_accounts_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/follower_accounts_controller.rb')
-rw-r--r--app/controllers/follower_accounts_controller.rb12
1 files changed, 10 insertions, 2 deletions
diff --git a/app/controllers/follower_accounts_controller.rb b/app/controllers/follower_accounts_controller.rb
index ab0749963..ff4df2adf 100644
--- a/app/controllers/follower_accounts_controller.rb
+++ b/app/controllers/follower_accounts_controller.rb
@@ -52,6 +52,14 @@ class FollowerAccountsController < ApplicationController
account_followers_url(@account, page: page) unless page.nil?
end
+ def next_page_url
+ page_url(follows.next_page) if follows.respond_to?(:next_page)
+ end
+
+ def prev_page_url
+ page_url(follows.prev_page) if follows.respond_to?(:prev_page)
+ end
+
def collection_presenter
if page_requested?
ActivityPub::CollectionPresenter.new(
@@ -60,8 +68,8 @@ class FollowerAccountsController < ApplicationController
size: @account.followers_count,
items: follows.map { |f| ActivityPub::TagManager.instance.uri_for(f.account) },
part_of: account_followers_url(@account),
- next: page_url(follows.next_page),
- prev: page_url(follows.prev_page)
+ next: next_page_url,
+ prev: prev_page_url
)
else
ActivityPub::CollectionPresenter.new(