Browse Source

Fix timeline pagination (#8827)

Ruby's ** operator does not play well with non-Hash objects, which
the params slice is

Fix #8821
Eugen Rochko 5 years ago
parent
commit
6c835085a3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/models/concerns/paginable.rb

+ 1 - 1
app/models/concerns/paginable.rb

@@ -20,7 +20,7 @@ module Paginable
       query
     }
 
-    scope :paginate_by_id, ->(limit, **options) {
+    scope :paginate_by_id, ->(limit, options = {}) {
       if options[:min_id].present?
         paginate_by_min_id(limit, options[:min_id]).reverse
       else