mirror of
https://github.com/iv-org/invidious.git
synced 2024-11-10 01:01:57 +01:00
SigHelper: Use 'URI.parse' instead of 'URI.new'
Co-authored-by: Brahim Hadriche <brahim.hadriche@gmail.com>
This commit is contained in:
parent
10e5788c21
commit
61d75050e4
1 changed files with 2 additions and 2 deletions
|
@ -274,10 +274,10 @@ class Invidious::SigHelper
|
|||
when .starts_with?('/')
|
||||
@socket = UNIXSocket.new(host_or_path)
|
||||
when .starts_with?("tcp://")
|
||||
uri = URI.new(host_or_path)
|
||||
uri = URI.parse(host_or_path)
|
||||
@socket = TCPSocket.new(uri.host.not_nil!, uri.port.not_nil!)
|
||||
else
|
||||
uri = URI.new("tcp://#{host_or_path}")
|
||||
uri = URI.parse("tcp://#{host_or_path}")
|
||||
@socket = TCPSocket.new(uri.host.not_nil!, uri.port.not_nil!)
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue