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

This commit is contained in:
Rodrigo Rodriguez 2023-11-27 14:52:50 -03:00
parent 9616ba498a
commit 38b4a5139f

View file

@ -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, "'");