Skip to content

Commit 2fce0bb

Browse files
authored
bugfix: Cannot show folder children (#303)
1 parent 564fa88 commit 2fce0bb

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/views/folderNode.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,13 @@ export class FolderNode extends DataNode {
1515
}
1616

1717
protected loadData(): Thenable<INodeData[]> {
18-
return Jdtls.getPackageData({ kind: NodeKind.Folder, projectUri: this._project.uri, path: this.path, rootPath: this._rootNode.path });
18+
return Jdtls.getPackageData({
19+
kind: NodeKind.Folder,
20+
projectUri: this._project.uri,
21+
path: this.path,
22+
rootPath: this._rootNode.path,
23+
handlerIdentifier: this._rootNode.handlerIdentifier,
24+
});
1925
}
2026

2127
protected createChildNodeList(): ExplorerNode[] {

0 commit comments

Comments
 (0)