about summary refs log tree commit diff
path: root/app/controllers/api/v1/scheduled_statuses_controller.rb
diff options
context:
space:
mode:
authorThibG <thib@sitedethib.com>2020-09-01 17:36:30 +0200
committerGitHub <noreply@github.com>2020-09-01 17:36:30 +0200
commitd967251fdc3826ad27d30e55258cfa4cdfd7c871 (patch)
tree91926ccaedf470bfef058cc7156f9f362d46186a /app/controllers/api/v1/scheduled_statuses_controller.rb
parentd95dd3883e0c7d1626f5e3b88d24af2627a641e2 (diff)
parent787a629b8f1df4cce53a9de7f3aa668cc9ef632f (diff)
Merge pull request #1417 from ThibG/glitch-soc/merge-upstream
Merge upstream changes
Diffstat (limited to 'app/controllers/api/v1/scheduled_statuses_controller.rb')
-rw-r--r--app/controllers/api/v1/scheduled_statuses_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/api/v1/scheduled_statuses_controller.rb b/app/controllers/api/v1/scheduled_statuses_controller.rb
index 9950296f3..f90642a73 100644
--- a/app/controllers/api/v1/scheduled_statuses_controller.rb
+++ b/app/controllers/api/v1/scheduled_statuses_controller.rb
@@ -32,7 +32,7 @@ class Api::V1::ScheduledStatusesController < Api::BaseController
   private
 
   def set_statuses
-    @statuses = current_account.scheduled_statuses.paginate_by_id(limit_param(DEFAULT_STATUSES_LIMIT), params_slice(:max_id, :since_id, :min_id))
+    @statuses = current_account.scheduled_statuses.to_a_paginated_by_id(limit_param(DEFAULT_STATUSES_LIMIT), params_slice(:max_id, :since_id, :min_id))
   end
 
   def set_status