Skip to content

Commit

Permalink
Fix pagination of followed tags (mastodon#20861)
Browse files Browse the repository at this point in the history
* Fix missing pagination headers on followed tags

* Fix typo
  • Loading branch information
trwnh authored Nov 17, 2022
1 parent 654d348 commit e1f819f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/controllers/api/v1/followed_tags_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
class Api::V1::FollowedTagsController < Api::BaseController
TAGS_LIMIT = 100

before_action -> { doorkeeper_authorize! :follow, :read, :'read:follows' }, except: :show
before_action -> { doorkeeper_authorize! :follow, :read, :'read:follows' }
before_action :require_user!
before_action :set_results

after_action :insert_pagination_headers, only: :show
after_action :insert_pagination_headers

def index
render json: @results.map(&:tag), each_serializer: REST::TagSerializer, relationships: TagRelationshipsPresenter.new(@results.map(&:tag), current_user&.account_id)
Expand Down Expand Up @@ -43,7 +43,7 @@ def pagination_since_id
end

def records_continue?
@results.size == limit_param(TAG_LIMIT)
@results.size == limit_param(TAGS_LIMIT)
end

def pagination_params(core_params)
Expand Down

0 comments on commit e1f819f

Please sign in to comment.