mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-22 15:40:23 +00:00
Various fixes
This commit is contained in:
parent
68cdedf796
commit
d3fef8efac
2 changed files with 1 additions and 2 deletions
|
@ -290,6 +290,7 @@ public abstract class DataStorage {
|
|||
}
|
||||
if (newParent.isPresent()) {
|
||||
newParent.get().setChildrenCache(null);
|
||||
newParent.get().setExpanded(true);
|
||||
}
|
||||
var toAdd = Stream.concat(Stream.of(entry), children.stream()).toArray(DataStoreEntry[]::new);
|
||||
listeners.forEach(storageListener -> storageListener.onStoreAdd(toAdd));
|
||||
|
|
|
@ -5,8 +5,6 @@ import java.util.UUID;
|
|||
|
||||
public interface ShellDialectAskpass {
|
||||
|
||||
String prepareLocalPassthroughContent(ShellControl sc, UUID requestId, String prefix) throws Exception;
|
||||
|
||||
String prepareStderrPassthroughContent(ShellControl sc, UUID requestId, String prefix) throws Exception;
|
||||
|
||||
String prepareFixedContent(ShellControl sc, String fileName, List<String> s) throws Exception;
|
||||
|
|
Loading…
Reference in a new issue