0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-11-22 09:20:29 +01:00

Update url encoding in actions to handle deprecation

Dieser Commit ist enthalten in:
Angus McLeod 2020-12-04 09:38:01 +11:00
Ursprung 39ce7248a8
Commit 61dfa9b2aa

Datei anzeigen

@ -282,7 +282,7 @@ class CustomWizard::Action
url += "&tags=#{tags.join(',')}" url += "&tags=#{tags.join(',')}"
end end
route_to = Discourse.base_uri + URI.encode(url) route_to = Discourse.base_uri + UrlHelper.encode(url)
data['route_to'] = route_to data['route_to'] = route_to
log_info("route: #{route_to}") log_info("route: #{route_to}")
@ -354,7 +354,7 @@ class CustomWizard::Action
url += "&#{action['code']}=#{data[action['code']]}" url += "&#{action['code']}=#{data[action['code']]}"
end end
route_to = URI.encode(url) route_to = UrlHelper.encode(url)
data['route_to'] = route_to data['route_to'] = route_to
log_info("route: #{route_to}") log_info("route: #{route_to}")