mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-21 15:10:23 +00:00
Small fixes
This commit is contained in:
parent
935e28190c
commit
70ba263ec4
2 changed files with 2 additions and 1 deletions
|
@ -25,6 +25,7 @@
|
|||
|
||||
.transfer:highlighted > * {
|
||||
-fx-border-color: -color-accent-emphasis;
|
||||
-fx-background-color: derive(-color-bg-subtle, 5%);
|
||||
}
|
||||
|
||||
.transfer .button {
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue