mlabouardy/dialogflow-angular5

Impossible to pass special character into post in dialogflow.service.ts

abc-associationtransitionbascarbone opened this issue · 1 comments

Hello ! Really nice work !

I have an issue in dialogflow.service.ts.
I can't post query with special characters.

I tried to use :
encode_utf8(s) {
return unescape(encodeURIComponent(s));
}

decode_utf8(s) {
return decodeURIComponent(escape(s));
}
But it didn't work

Do you have a suggestion ?
Thanks a lot.
Romain