ring 2024-02-14

(ring.util.codec/url-encode "") returns daniel+10% while it should be daniel%2B10% . + should be encoded to %2B as browsers interpreter + as space. The weird thing is when I’m doing (ring.util.codec/url-decode "daniel%2B10%") it knows to translate %2B to + . Is there a workaround? anybody run into this?