Fix processing of min_id and max_id parameters in /api/v2/search (#26927)
This commit is contained in:
@@ -39,12 +39,12 @@ class StatusesSearchService < BaseService
|
|||||||
end
|
end
|
||||||
|
|
||||||
if @options[:min_id]
|
if @options[:min_id]
|
||||||
timestamp = Mastodon::Snowflake.to_time(@options[:min_id])
|
timestamp = Mastodon::Snowflake.to_time(@options[:min_id].to_i)
|
||||||
syntax_options << "after:\"#{timestamp.iso8601}\""
|
syntax_options << "after:\"#{timestamp.iso8601}\""
|
||||||
end
|
end
|
||||||
|
|
||||||
if @options[:max_id]
|
if @options[:max_id]
|
||||||
timestamp = Mastodon::Snowflake.to_time(@options[:max_id])
|
timestamp = Mastodon::Snowflake.to_time(@options[:max_id].to_i)
|
||||||
syntax_options << "before:\"#{timestamp.iso8601}\""
|
syntax_options << "before:\"#{timestamp.iso8601}\""
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user