master
Kanezoh 2022-01-05 08:40:35 +09:00
parent 12df962cbd
commit e7efc6dfe7
1 changed files with 2 additions and 2 deletions

View File

@ -91,9 +91,9 @@ class Mechanize
when :put
client.put(path, headers: request_headers, body: body)
when :delete
client.delete(uri, headers: request_headers, body: body)
client.delete(path, headers: request_headers, body: body)
when :head
client.head(uri, headers: request_headers)
client.head(path, headers: request_headers)
end
end
end