Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 04:12:53 +01:00
API: fix request call
Dieser Commit ist enthalten in:
Ursprung
a2ebd5c463
Commit
6056351b7c
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
|
@ -74,7 +74,7 @@ class CustomWizard::Api::Endpoint
|
||||||
headers["Authorization"] = auth_string if auth_string
|
headers["Authorization"] = auth_string if auth_string
|
||||||
headers["Content-Type"] = content_type if content_type
|
headers["Content-Type"] = content_type if content_type
|
||||||
|
|
||||||
connection = Excon.new(UrlHelper.encode_and_parse(endpoint.url), headers: headers)
|
connection = Excon.new(URI.encode(endpoint.url), headers: headers)
|
||||||
|
|
||||||
params = { method: endpoint.method }
|
params = { method: endpoint.method }
|
||||||
|
|
||||||
|
|
Laden …
In neuem Issue referenzieren