Monkey patch faraday to fix encoding issue in URLs

Using binary encoding allows the URL to contain characters that are not UTF-8 encoded.

 #1588

Dominik Sander %!s(int64=8) %!d(string=hace) años
padre
commit
5c53e660a8
Se han modificado 1 ficheros con 11 adiciones y 0 borrados
  1. 11 0
      config/initializers/faraday_patch.rb

+ 11 - 0
config/initializers/faraday_patch.rb

@@ -0,0 +1,11 @@
1
+# Monkey patch https://github.com/lostisland/faraday/pull/513
2
+# Fixes encoding issue when passing an URL with non UTF-8 characters
3
+module Faraday
4
+  module Utils
5
+    def unescape(s)
6
+      string = s.to_s
7
+      string.force_encoding(Encoding::BINARY) if RUBY_VERSION >= '1.9'
8
+      CGI.unescape string
9
+    end
10
+  end
11
+end