Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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 @@ -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)
2 changes: 1 addition & 1 deletion src/api/IBMi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down