From: Eugen Rochko Date: Fri, 30 Aug 2019 00:49:54 +0000 (+0200) Subject: Fix non-numbers being passed to Redis and causing an error (#11697) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=5f591d979c12984f8631eb60bcaeb461d3a097a3;p=mastodon.git Fix non-numbers being passed to Redis and causing an error (#11697) --- diff --git a/app/models/feed.rb b/app/models/feed.rb index 0e8943ff8..36e0c1e0a 100644 --- a/app/models/feed.rb +++ b/app/models/feed.rb @@ -9,6 +9,11 @@ class Feed end def get(limit, max_id = nil, since_id = nil, min_id = nil) + limit = limit.to_i + max_id = max_id.to_i if max_id.present? + since_id = since_id.to_i if since_id.present? + min_id = min_id.to_i if min_id.present? + from_redis(limit, max_id, since_id, min_id) end