you have an encoding issue in your Web Chat inline implementation:
occurs when sending an Activity with text e.g. "脺脰脛眉枚盲脽" (German Umlauts) and type="message" back through the framework API https://directline.botframework.com/
fun fact: the encoding of the buttons is FINE :smile:
also texts in HeroCards are well encoded. just plain simple text has the wrong encoding
Did you figure this out by chance? I am having the exact same issue.
You could fix it by adding the following tag to your
section<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
Support: can you see if it is still repro on CDN pre-release build? https://cdn.botframework.com/botframework-webchat/master/botchat.js.
@jvanderbiest works with the meta tag. thanks!
Most helpful comment
You could fix it by adding the following tag to your
section<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />