Merge branch 'master' of https://github.com/GeneralBots/BotServer into master
This commit is contained in:
commit
9488316013
3 changed files with 10 additions and 1 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
## [2.0.68](https://github.com/pragmatismo-io/BotServer/compare/2.0.67...2.0.68) (2020-12-07)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* **customer-satisfaction.gbapp:** Fix rate and suggestion text store. ([55bb46d](https://github.com/pragmatismo-io/BotServer/commit/55bb46d8823d4640e297177634252e6dc06e9a28))
|
||||||
|
|
||||||
## [2.0.67](https://github.com/pragmatismo-io/BotServer/compare/2.0.66...2.0.67) (2020-12-07)
|
## [2.0.67](https://github.com/pragmatismo-io/BotServer/compare/2.0.66...2.0.67) (2020-12-07)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "botserver",
|
"name": "botserver",
|
||||||
"version": "2.0.67",
|
"version": "2.0.68",
|
||||||
"description": "General Bot Community Edition open-core server.",
|
"description": "General Bot Community Edition open-core server.",
|
||||||
"main": "./boot.js",
|
"main": "./boot.js",
|
||||||
"bugs": "https://github.com/pragmatismo-io/BotServer/issues",
|
"bugs": "https://github.com/pragmatismo-io/BotServer/issues",
|
||||||
|
|
|
@ -580,7 +580,9 @@ export class GBConversationalService {
|
||||||
}
|
}
|
||||||
|
|
||||||
text = text.toLowerCase();
|
text = text.toLowerCase();
|
||||||
|
text = text.replace('who´s', 'who is');
|
||||||
text = text.replace('who\'s', 'who is');
|
text = text.replace('who\'s', 'who is');
|
||||||
|
text = text.replace('what´s', 'what is');
|
||||||
text = text.replace('what\'s', 'what is');
|
text = text.replace('what\'s', 'what is');
|
||||||
text = text.replace('?', ' ');
|
text = text.replace('?', ' ');
|
||||||
text = text.replace('!', ' ');
|
text = text.replace('!', ' ');
|
||||||
|
|
Loading…
Add table
Reference in a new issue