fix(kb.gbapp): Content plain text to other channels when no projector is avilable.
This commit is contained in:
parent
db8558254f
commit
283e596c80
1 changed files with 4 additions and 0 deletions
|
@ -392,6 +392,10 @@ export class KBService {
|
||||||
else if (channel === 'whatsapp') {
|
else if (channel === 'whatsapp') {
|
||||||
await this.sendMarkdownToMobile(step, answer, conversationalService, min);
|
await this.sendMarkdownToMobile(step, answer, conversationalService, min);
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
await step.context.sendActivity(html);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private async sendMarkdownToWeb(step: GBDialogStep, conversationalService: IGBConversationalService, html: string, answer: GuaribasAnswer) {
|
private async sendMarkdownToWeb(step: GBDialogStep, conversationalService: IGBConversationalService, html: string, answer: GuaribasAnswer) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue