From 85e1499b2c2ea16e0fae32b24737690088a880de Mon Sep 17 00:00:00 2001 From: Yuji Yaginuma Date: Sun, 15 Mar 2026 09:43:29 +0900 Subject: [PATCH] Use `PARSER` instead of `DEFAULT_PARSER` in `URI.join` I changed to use `PARSER` instead of `DEFAULT_PARSER` with #161, but I missed to fix `URi.join`. This PR fixes it. --- lib/uri/common.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/uri/common.rb b/lib/uri/common.rb index 1800836..971a684 100644 --- a/lib/uri/common.rb +++ b/lib/uri/common.rb @@ -271,7 +271,7 @@ def self.parse(uri) # # => # # def self.join(*str) - DEFAULT_PARSER.join(*str) + PARSER.join(*str) end #