fix(basic.gblib): update ChatServices.ts #420
1 changed files with 5 additions and 4 deletions
|
|
@ -527,10 +527,11 @@ export class GBVMService extends GBService {
|
|||
}
|
||||
|
||||
public static normalizeQuotes(text: any) {
|
||||
text = text.replace(/\"/gm, '`');
|
||||
text = text.replace(/\¨/gm, '`');
|
||||
text = text.replace(/\“/gm, '`');
|
||||
text = text.replace(/\”/gm, '`');
|
||||
|
||||
text = text.replace(/\"/gm, '"');
|
||||
text = text.replace(/\¨/gm, '"');
|
||||
text = text.replace(/\“/gm, '"');
|
||||
text = text.replace(/\”/gm, '"');
|
||||
text = text.replace(/\‘/gm, "'");
|
||||
text = text.replace(/\’/gm, "'");
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue