mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-21 23:20:23 +00:00
Fix for blank paths in file browser
This commit is contained in:
parent
593e0eb7b7
commit
9dc5cf8048
1 changed files with 1 additions and 0 deletions
|
@ -43,6 +43,7 @@ public class BrowserOverviewComp extends SimpleComp {
|
|||
var commonPlatform = FXCollections.<FileEntry>observableArrayList();
|
||||
ThreadHelper.runFailableAsync(() -> {
|
||||
var common = sc.getOsType().determineInterestingPaths(sc).stream()
|
||||
.filter(s -> !s.isBlank())
|
||||
.map(s -> FileEntry.ofDirectory(model.getFileSystem(), s))
|
||||
.filter(entry -> {
|
||||
try {
|
||||
|
|
Loading…
Reference in a new issue