Skip to content

Commit

Permalink
CV2-3589 refactor to not uselessly explode all the tests and rewrite …
Browse files Browse the repository at this point in the history
…them with a meaningless null value
  • Loading branch information
DGaffney committed Sep 14, 2023
1 parent 4b11024 commit 142869b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/models/bot/fetch.rb
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,9 @@ def self.import_claim_reviews(installation_id, language = nil, force = false, ma
(from.to_i..to.to_i).step(step.days).each do |current_timestamp|
from2 = Time.at(current_timestamp)
to2 = from2 + step.days
Bot::Fetch.get_claim_reviews({ service: service_name, start_time: from2.strftime('%Y-%m-%d'), end_time: to2.strftime('%Y-%m-%d'), language: language}).each do |claim_review|
params = { service: service_name, start_time: from2.strftime('%Y-%m-%d'), end_time: to2.strftime('%Y-%m-%d'), language: language}
params[:language] = language if !language.nil?
Bot::Fetch.get_claim_reviews(params).each do |claim_review|
next if !maximum.nil? && total >= maximum
self.import_claim_review(claim_review, team.id, user.id, status_fallback, status_mapping, auto_publish_reports, force)
total += 1
Expand Down

0 comments on commit 142869b

Please sign in to comment.