Fix timeline pagination (#8827)

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

Fix #8821
master
Eugen Rochko 6 years ago committed by GitHub
parent e09301f414
commit 6c835085a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      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

Loading…
Cancel
Save