Skip to content

Commit

Permalink
Fixed Dropbox Connector FolderPicker interface.
Browse files Browse the repository at this point in the history
  • Loading branch information
dterefe committed Oct 18, 2024
1 parent 42c1e19 commit 96944cb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ public DUUIFolder getFolderStructure(String path, String name) {

result.getEntries().stream()
.filter(f -> f instanceof FolderMetadata)
.map(f -> getFolderStructure(((FolderMetadata) f).getId(), f.getName()))
.map(f -> getFolderStructure(((FolderMetadata) f).getPathLower(), f.getName()))
.filter(Objects::nonNull)
.forEach(root::addChild);

Expand Down

0 comments on commit 96944cb

Please sign in to comment.