We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1442c5 commit 478e7e8Copy full SHA for 478e7e8
src/api/IBMiContent.ts
@@ -453,17 +453,12 @@ export default class IBMiContent {
453
454
newLibl = newLibl
455
.filter(lib => {
456
- if (lib.match(/^\d/)) {
457
- badLibs.push(lib);
458
- return false;
+ const isValid = this.ibmi.validQsysName(lib);
+ if(!isValid){
+ badLibs.push(lib);
459
}
460
-
461
- if (lib.length > 10) {
462
463
464
- }
465
466
- return true;
+
+ return isValid;
467
});
468
469
const sanitized = Tools.sanitizeObjNamesForPase(newLibl);
0 commit comments