Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,3 +66,4 @@ Thanks so much to everyone [who has contributed](https://github.com/codefori/vsc
* [@nathaniel-king-navarrete](https://github.com/Nathaniel-King-Navarrete)
* [@buzzia2001](https://github.com/buzzia2001)
* [@e1mais](https://github.com/e1mais)
* [@jman116](https://github.com/jman116)
2 changes: 1 addition & 1 deletion src/api/IBMi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1565,7 +1565,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);
Expand Down
Loading