new(basic.gblib): Allow TABLE keyword multiple times per file #383.
This commit is contained in:
parent
2f99a2d548
commit
292d4b918c
2 changed files with 11 additions and 1 deletions
|
@ -14,7 +14,6 @@ Request your free IT security evaluation
|
|||
This IT security policy helps us:
|
||||
|
||||
• 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 data protection officer to advise on data protection laws and best practices
|
||||
Review process
|
||||
|
|
|
@ -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);
|
||||
|
||||
try {
|
||||
|
||||
if (result.status === 2000) {
|
||||
|
||||
// Token expired.
|
||||
|
||||
GBLog.info(`Expired Token for ${url}.`);
|
||||
|
@ -1810,6 +1819,8 @@ export class SystemKeywords {
|
|||
}
|
||||
}
|
||||
|
||||
return res;
|
||||
|
||||
} catch (error) {
|
||||
|
||||
// This is not JSON.
|
||||
|
|
Loading…
Add table
Reference in a new issue