]> git.openstreetmap.org Git - rails.git/commitdiff
workaround for iD bug #10761
authorMartin Raifer <martin@raifer.tech>
Wed, 12 Feb 2025 13:08:19 +0000 (14:08 +0100)
committerGitHub <noreply@github.com>
Wed, 12 Feb 2025 13:08:19 +0000 (14:08 +0100)
the current version of iD (v2.31, before the fix for https://github.com/openstreetmap/iD/issue/10761: https://github.com/openstreetmap/iD/pull/10766), does not fully support `x-www-form-urlencoded` "query-style" strings in the hash: Specifically, spaces encoded as `+` will not be decoded back to ` `.

This workaround essentially temporarily reverts the behaviour of the website to the state before #5592, and can be dropped again with the next minor version upgrade of iD (`v2.32`).

app/assets/javascripts/edit/id.js.erb

index 588aa1e86ae2918318518d6acc438771899f88fe..637b414c31a48b16a9696d83024f2876cb86abac 100644 (file)
@@ -33,5 +33,5 @@ $(document).ready(function () {
 
   if (id.data("gpx")) params.set("gpx", id.data("gpx"));
 
-  id.attr("src", id.data("url") + "#" + params);
+  id.attr("src", id.data("url") + "#" + params.toString().replace('+', '%20'));
 });