Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

* Add CGI as dependency for Ruby 3.5+
* Add batch capability to Phone Numbers verification
* Don't enforce ssl as part of Net::HTTP configuration

# Addressfinder 1.15.0 (March 2025) #

Expand Down
4 changes: 2 additions & 2 deletions lib/addressfinder/http.rb
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ def net_http
config.proxy_password)
http.open_timeout = config.timeout
http.read_timeout = config.timeout
http.use_ssl = true
http.use_ssl = config.port == 443
http
end
end
end
end
end