This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository pollen. See https://gitlab.nuiton.org/chorem/pollen.git commit 9c75bc3234ce703a297c186c31abde955fcbc60d Author: Kevin Morin <morin@codelutin.com> Date: Tue Sep 19 14:33:02 2017 +0200 echapper et encoder les caractères spéciaux pour le mot de passe et le login --- pollen-ui-riot-js/src/main/web/js/AuthService.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pollen-ui-riot-js/src/main/web/js/AuthService.js b/pollen-ui-riot-js/src/main/web/js/AuthService.js index b4d80d6e..8a1944e6 100644 --- a/pollen-ui-riot-js/src/main/web/js/AuthService.js +++ b/pollen-ui-riot-js/src/main/web/js/AuthService.js @@ -45,7 +45,7 @@ class AuthService extends FetchService { return this.fetch( "/v1/login", "POST", - {Authorization: "Basic " + btoa(login + ":" + password)}, + {Authorization: "Basic " + btoa(unescape(encodeURIComponent(login + ":" + password)))}, null); } -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.