Christopher-invotra / malone-app

Malone App used by Klarity
0 stars 0 forks source link

Plus character in email address not encoded for chargebee #6

Open Christopher-invotra opened 3 years ago

Christopher-invotra commented 3 years ago

If you sign up with an email address that includes a plus alias e.g. john+klarity@invotra.co and try to create a subscription, the chargebee popup complains of "wrong format". I believe this is because we are passing the + character across in the URL as a +, which gets decoded to a space. Instead we should pass it over as %2B which gets decoded to +.

Christopher-invotra commented 3 years ago

pretty sure this is done in the frontend