summaryrefslogtreecommitdiff
path: root/lib/uri/generic.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/uri/generic.rb')
-rw-r--r--lib/uri/generic.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/uri/generic.rb b/lib/uri/generic.rb
index a37649545a..1056cfe3bc 100644
--- a/lib/uri/generic.rb
+++ b/lib/uri/generic.rb
@@ -1239,7 +1239,7 @@ module URI
# return base and rel.
# you can modify `base', but can not `rel'.
def merge0(oth)
- oth = URI(oth, parser)
+ oth = parser.send(:convert_to_uri, oth)
if self.relative? && oth.relative?
raise BadURIError,
@@ -1302,7 +1302,7 @@ module URI
# :stopdoc:
def route_from0(oth)
- oth = URI(oth, parser)
+ oth = parser.send(:convert_to_uri, oth)
if self.relative?
raise BadURIError,
"relative URI: #{self}"
@@ -1410,7 +1410,7 @@ module URI
# #=> #<URI::Generic:0x2020c2f6 URL:/main.rbx?page=1>
#
def route_to(oth)
- URI(oth, parser).route_from(self)
+ parser.send(:convert_to_uri, oth).route_from(self)
end
#