mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-25 00:50:31 +00:00
Fix NPE [release]
This commit is contained in:
parent
ac7140f8ae
commit
c6efb9eec8
1 changed files with 1 additions and 1 deletions
|
@ -158,7 +158,7 @@ public final class OpenFileSystemModel {
|
|||
TerminalHelper.open(adjustedPath, cmd);
|
||||
}
|
||||
});
|
||||
return Optional.of(currentPath.get());
|
||||
return Optional.ofNullable(currentPath.get());
|
||||
}
|
||||
|
||||
// Evaluate optional links
|
||||
|
|
Loading…
Reference in a new issue