mirror of
https://github.com/xpipe-io/xpipe.git
synced 2026-07-08 11:30:42 +00:00
Fix NPEs
This commit is contained in:
+1
-1
@@ -48,7 +48,7 @@ public class PodmanContainerStoreProvider implements ShellStoreProvider {
|
||||
@Override
|
||||
public DataStoreEntry getDisplayParent(DataStoreEntry store) {
|
||||
PodmanContainerStore s = store.getStore().asNeeded();
|
||||
return s.getCmd().get();
|
||||
return s.getCmd() != null ? s.getCmd().get() : null;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user