Commit 86ea3e2
committed
Fix
384bf45 breaks `Sprockets::Base#unescape`.
The following code has been changed between 3.7.3 and 3.7.4.
``` console
$ ruby -I ./lib -r sprockets -e 'p [Sprockets::VERSION, Sprockets::Environment.new.send(:unescape, "%")]'
```
```
["3.7.3", "%"]
["3.7.4", "%25"]
```
This commit changes back to the behavior of 3.7.3.Sprockets::Base#unescape to avoid unexpected change landed in 3.7.4.1 parent fb92f7b commit 86ea3e2
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
155 | 155 | | |
156 | 156 | | |
157 | 157 | | |
158 | | - | |
| 158 | + | |
159 | 159 | | |
160 | 160 | | |
161 | 161 | | |
| |||
0 commit comments