Small fixes

This commit is contained in:
crschnick 2024-07-08 09:14:42 +00:00
parent 935e28190c
commit 70ba263ec4
2 changed files with 2 additions and 1 deletions

View file

@ -25,6 +25,7 @@
.transfer:highlighted > * {
-fx-border-color: -color-accent-emphasis;
-fx-background-color: derive(-color-bg-subtle, 5%);
}
.transfer .button {

View file

@ -60,7 +60,7 @@ public interface NetworkTunnelStore extends DataStore {
default NetworkTunnelSession sessionChain(int local, int remotePort) throws Exception {
if (!isLocallyTunneable()) {
throw new IllegalStateException();
throw new IllegalStateException("Unable to create tunnel chain as one intermediate system does not support tunneling");
}
var running = new AtomicBoolean();