diff options
author | multiple creatures <dev@multiple-creature.party> | 2019-09-02 00:51:56 -0500 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2019-09-02 00:51:56 -0500 |
commit | ab9a3c2fe28a92dfa7331829a44b81c3d5bdb1f5 (patch) | |
tree | 1c7b86cf2993c268a247a2b1c4d37229749fb43d /app/controllers/api/v1 | |
parent | 8689b662681820ad8866c9ae2b22ba1022926085 (diff) |
`bookmarks` -> `account_bookmarks`
Diffstat (limited to 'app/controllers/api/v1')
-rw-r--r-- | app/controllers/api/v1/timelines/tag_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/api/v1/timelines/tag_controller.rb b/app/controllers/api/v1/timelines/tag_controller.rb index 01d1b30b8..602c4ea62 100644 --- a/app/controllers/api/v1/timelines/tag_controller.rb +++ b/app/controllers/api/v1/timelines/tag_controller.rb @@ -58,7 +58,7 @@ class Api::V1::Timelines::TagController < Api::BaseController end def bookmark_results - @_results ||= bookmarks.paginate_by_max_id( + @_results ||= account_bookmarks.paginate_by_max_id( limit_param(DEFAULT_STATUSES_LIMIT), params[:max_id], params[:since_id] |