mirror of
https://github.com/xpipe-io/xpipe.git
synced 2026-05-29 07:20:35 +00:00
Fix NPE
This commit is contained in:
@@ -51,7 +51,7 @@ public class SecurityKeyStrategy implements SshIdentityKeyListStrategy {
|
||||
}
|
||||
|
||||
ThreadHelper.runFailableAsync(() -> {
|
||||
var fs = config.getFileSystem().getValue() != null
|
||||
var fs = config.getFileSystem() != null && config.getFileSystem().getValue() != null
|
||||
? config.getFileSystem().getValue().getStore()
|
||||
: (ShellStore) DataStorage.get().local().getStore().asNeeded();
|
||||
var path = impl.determineLibraryPath(fs.getOrStartSession());
|
||||
|
||||
Reference in New Issue
Block a user