Skip to content

Commit

Permalink
fix(kb.gbapp): Markdown OK again for MSTeams.
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigorodriguez committed Jun 2, 2021
1 parent 80b91c4 commit 5fa88f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/kb.gbapp/services/KBService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@ export class KBService implements IGBKBService {
`${min.instance.botId}.gbkb`, 'assets', answer.content);
await this.playUrl(min, min.conversationalService, step, url, channel);
} else if (answer.format === '.md') {
await min.conversationalService['playMarkdown'](min, answer, channel, step, min.conversationalService);
await min.conversationalService['playMarkdown'](min, answer.content, channel, step, min.conversationalService);
} else if (answer.content.endsWith('.ogg') && process.env.AUDIO_DISABLED !== 'true') {
await this.playAudio(min, answer, channel, step, min.conversationalService);
} else {
Expand Down

0 comments on commit 5fa88f0

Please sign in to comment.