This commit is contained in:
Rodrigo Rodriguez (pragmatismo.io) 2018-11-05 14:27:19 -02:00
commit 139517decf
5 changed files with 7 additions and 3 deletions

View file

@ -1,3 +1,5 @@
[![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier)
** **Checkout our FREE [Intranet Quickstart Bot](https://github.com/pragmatismo-io/IntranetBotQuickStart.gbai)** **
Welcome to General Bot Community Edition
@ -204,6 +206,7 @@ Discontinued commands:
* David Lerner (david.lerner@hotmail.com) - UI, UX & Theming.
* Eduardo Romeiro (eromeirosp@outlook.com) - Content & UX.
* Jorge Ramos (jramos@pobox.com) - Coding, Docs & Architecture.
* PH Nascimento (ph.an@outlook.com) - Product Manager
Powered by Microsoft [BOT Framework](https://dev.botframework.com/) and [Azure](http://www.azure.com).

1
docs/_config.yml Normal file
View file

@ -0,0 +1 @@
theme: jekyll-theme-minimal

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1,013 KiB

After

Width:  |  Height:  |  Size: 280 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

View file

@ -202,8 +202,8 @@ export class WhatsappDirectLine extends GBService {
if (activities && activities.length) {
// Ignore own messages.
// TODO: this.botId instead of "general-bot-9672a8d3"
activities = activities.filter((m) => { return (m.from.id === "GeneralBots") && m.type === "message" })
activities = activities.filter((m) => { return (m.from.id === "GeneralBots") && m.type === "message" })
if (activities.length) {
@ -265,4 +265,4 @@ export class WhatsappDirectLine extends GBService {
const result = await request.get(options)
}
}
}