diff --git a/dist.zip b/dist.zip index c8862f27b..9bd4e3f4a 100644 Binary files a/dist.zip and b/dist.zip differ diff --git a/js/page/claim_code.js b/js/page/claim_code.js index e8fdf72a2..da0883b93 100644 --- a/js/page/claim_code.js +++ b/js/page/claim_code.js @@ -60,7 +60,8 @@ var ClaimCodePage = React.createClass({ xhr.open('POST', 'https://invites.lbry.io', true); xhr.setRequestHeader('Content-type', 'application/x-www-form-urlencoded'); - xhr.send('code=' + code + '&address=' + address + '&email=' + email); + xhr.send('code=' + encodeURIComponent(code) + '&address=' + encodeURIComponent(address) + + '&email=' + encodeURIComponent(email)); }); }, handleSkip: function() {