new(basic.gblib): Allow TABLE keyword multiple times per file #383.

This commit is contained in:
Rodrigo Rodriguez 2023-10-13 14:53:36 -03:00
parent 2f99a2d548
commit 292d4b918c
2 changed files with 11 additions and 1 deletions

View file

@ -14,7 +14,6 @@ Request your free IT security evaluation
This IT security policy helps us: This IT security policy helps us:
• Rodrigo Rodriguez is the director with overall responsibility for IT security strategy. • Rodrigo Rodriguez is the director with overall responsibility for IT security strategy.
• Dário Vieira has day-to-day operational responsibility for implementing this policy.
• Microsoft is the IT partner organisation we use to help with our planning and support. • Microsoft is the IT partner organisation we use to help with our planning and support.
• Microsoft is the data protection officer to advise on data protection laws and best practices • Microsoft is the data protection officer to advise on data protection laws and best practices
Review process Review process

View file

@ -1784,12 +1784,21 @@ export class SystemKeywords {
}; };
// let result;
// if (!SystemKeywords.aa) {
// SystemKeywords.aa = 1;
// return r1;
// } else {
// SystemKeywords.aa = null;
// return r2;
// }
const result = await fetch(url, options); const result = await fetch(url, options);
try { try {
if (result.status === 2000) { if (result.status === 2000) {
// Token expired. // Token expired.
GBLog.info(`Expired Token for ${url}.`); GBLog.info(`Expired Token for ${url}.`);
@ -1810,6 +1819,8 @@ export class SystemKeywords {
} }
} }
return res;
} catch (error) { } catch (error) {
// This is not JSON. // This is not JSON.