diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 00c5d3f38..ef3bf7804 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -67,3 +67,4 @@ Thanks so much to everyone [who has contributed](https://github.com/codefori/vsc * [@buzzia2001](https://github.com/buzzia2001) * [@e1mais](https://github.com/e1mais) * [@NattyNarwhal](https://github.com/NattyNarwhal) +* [@jman116](https://github.com/jman116) diff --git a/src/api/IBMi.ts b/src/api/IBMi.ts index 886f02c09..a93fde881 100644 --- a/src/api/IBMi.ts +++ b/src/api/IBMi.ts @@ -1566,7 +1566,7 @@ export default class IBMi { let foundNumber = this.libraryAsps.get(library); if (!foundNumber) { - const [row] = await this.runSQL(`SELECT IASP_NUMBER FROM TABLE(QSYS2.LIBRARY_INFO('${this.sysNameInAmerican(library)}'))`); + const [row] = await this.runSQL(`SELECT IASP_NUMBER FROM TABLE(QSYS2.LIBRARY_INFO('${this.sysNameInAmerican(library)}', DETAILED_INFO=>'NO'))`); const iaspNumber = Number(row?.IASP_NUMBER); if (iaspNumber >= 0) { this.libraryAsps.set(library, iaspNumber);