]> git.openstreetmap.org Git - rails.git/blobdiff - config/initializers/router.rb
Merge pull request #4813 from AntonKhorev/no-fst-italic
[rails.git] / config / initializers / router.rb
index 0987fa0183fb5fd399237857e5e03a05ef54a3b4..849aba2ad15f428785b83f457b0141933dbdfd7a 100644 (file)
@@ -1,14 +1,14 @@
 # Some versions of ruby seem to accidentally force the encoding
 # as part of normalize_path and some don't
 
-module OSM
+module OpenStreetMap
   module Router
     module ForceEncoding
       def normalize_path(path)
-        super(path).force_encoding("UTF-8")
+        super.force_encoding("UTF-8")
       end
     end
   end
 end
 
-ActionDispatch::Journey::Router::Utils.singleton_class.prepend(OSM::Router::ForceEncoding)
+ActionDispatch::Journey::Router::Utils.singleton_class.prepend(OpenStreetMap::Router::ForceEncoding)