Skip to content

Commit

Permalink
Update src/filesystems/qsys/QSysFs.ts
Browse files Browse the repository at this point in the history
Co-authored-by: Sébastien Julliand <sebjulliand@gmail.com>
  • Loading branch information
worksofliam and sebjulliand authored Jan 15, 2025
1 parent 59e8e88 commit cc73879
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/filesystems/qsys/QSysFs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ export class QSysFS implements vscode.FileSystemProvider {
}

async getMemberAttributes(connection: IBMi, path: QsysPath & { member?: string }) {
const loadAttributes = async () => await connection.content.getAttributes(path, "CREATE_TIME", "MODIFY_TIME", "DATA_SIZE");
const loadAttributes = async () => await connection.getContent().getAttributes(path, "CREATE_TIME", "MODIFY_TIME", "DATA_SIZE");

path.asp = path.asp || await connection.lookupLibraryIAsp(path.library);
let attributes = await loadAttributes();
Expand Down

0 comments on commit cc73879

Please sign in to comment.