mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-11-25 08:16:04 +00:00
Add missing URI component encoding on login
This commit is contained in:
parent
e00ebb49ca
commit
269db12436
@ -59,7 +59,7 @@ export default class LoginFormUiHandler extends FormModalUiHandler {
|
|||||||
};
|
};
|
||||||
if (!this.inputs[0].text)
|
if (!this.inputs[0].text)
|
||||||
return onFail(i18next.t('menu:emptyUsername'));
|
return onFail(i18next.t('menu:emptyUsername'));
|
||||||
Utils.apiPost(`account/login`, `username=${this.inputs[0].text}&password=${this.inputs[1].text}`, 'application/x-www-form-urlencoded')
|
Utils.apiPost(`account/login`, `username=${encodeURIComponent(this.inputs[0].text)}&password=${encodeURIComponent(this.inputs[1].text)}`, 'application/x-www-form-urlencoded')
|
||||||
.then(response => {
|
.then(response => {
|
||||||
if (!response.ok)
|
if (!response.ok)
|
||||||
return response.text();
|
return response.text();
|
||||||
|
Loading…
Reference in New Issue
Block a user