Add a comment for what and why we're rescuing
This commit is contained in:
parent
c8504427cb
commit
8c9a6e3379
@ -522,7 +522,7 @@ class CurlDownloadStrategy < AbstractFileDownloadStrategy
|
|||||||
.flat_map { |headers| [*headers["last-modified"]] }
|
.flat_map { |headers| [*headers["last-modified"]] }
|
||||||
.filter_map do |t|
|
.filter_map do |t|
|
||||||
t.match?(/^\d+$/) ? Time.at(t.to_i) : Time.parse(t)
|
t.match?(/^\d+$/) ? Time.at(t.to_i) : Time.parse(t)
|
||||||
rescue ArgumentError
|
rescue ArgumentError # When `Time.parse` gets a badly formatted date.
|
||||||
nil
|
nil
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user