mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-09 09:12:19 +00:00
Use inclusive range in ActivityTracker#get
(#29413)
This commit is contained in:
parent
df6086d402
commit
d39d625561
|
@ -24,7 +24,7 @@ class ActivityTracker
|
|||
end
|
||||
|
||||
def get(start_at, end_at = Time.now.utc)
|
||||
(start_at.to_date...end_at.to_date).map do |date|
|
||||
(start_at.to_date..end_at.to_date).map do |date|
|
||||
key = key_at(date.to_time(:utc))
|
||||
|
||||
value = case @type
|
||||
|
|
Loading…
Reference in a new issue