fix(basic.gblib): Fix in SEND FILE version.

This commit is contained in:
Rodrigo Rodriguez 2023-11-27 14:52:50 -03:00
parent 3f266f1262
commit bacbb9c772

View file

@ -527,10 +527,11 @@ export class GBVMService extends GBService {
} }
public static normalizeQuotes(text: any) { 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, "'");
text = text.replace(/\/gm, "'"); text = text.replace(/\/gm, "'");