fix(basic.gblib): Fix in SEND FILE version.
This commit is contained in:
parent
3f266f1262
commit
bacbb9c772
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