Fix some exceptions

This commit is contained in:
crschnick 2024-09-13 18:30:10 +00:00
parent feb8cf9165
commit ccb8888df2
2 changed files with 12 additions and 6 deletions

View file

@ -502,7 +502,8 @@ public final class BrowserFileListComp extends SimpleComp {
updateHandler.run();
fileList.getShown().addListener((observable, oldValue, newValue) -> {
updateHandler.run();
// Delay to prevent internal tableview exceptions when sorting
Platform.runLater(updateHandler);
});
fileList.getFileSystemModel().getCurrentPath().addListener((observable, oldValue, newValue) -> {
if (oldValue == null) {

View file

@ -1,6 +1,7 @@
package io.xpipe.app.util;
import io.xpipe.app.ext.ProcessControlProvider;
import io.xpipe.core.process.ProcessOutputException;
import io.xpipe.core.process.ShellControl;
import io.xpipe.core.process.ShellDialects;
@ -38,11 +39,15 @@ public class LocalShell {
}
if (localPowershell == null) {
localPowershell = ProcessControlProvider.get()
.createLocalProcessControl(false)
.subShell(ShellDialects.POWERSHELL)
.withoutLicenseCheck()
.start();
try {
localPowershell = ProcessControlProvider.get()
.createLocalProcessControl(false)
.subShell(ShellDialects.POWERSHELL)
.withoutLicenseCheck()
.start();
} catch (ProcessOutputException ex) {
throw ProcessOutputException.withPrefix("Failed to start local powershell process", ex);
}
}
return localPowershell.start();
}