mirror of
https://github.com/ViaVersion/ViaProxy.git
synced 2024-11-14 19:15:08 -05:00
Fixed issue where ViaProxy wouldn't shut down properly on CLI
This commit is contained in:
parent
32a8c22b23
commit
a229d77208
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ public class ViaProxy {
|
||||||
Options.parse(args);
|
Options.parse(args);
|
||||||
} catch (Throwable t) {
|
} catch (Throwable t) {
|
||||||
Logger.LOGGER.fatal("[" + t.getClass().getSimpleName() + "] " + t.getMessage());
|
Logger.LOGGER.fatal("[" + t.getClass().getSimpleName() + "] " + t.getMessage());
|
||||||
return;
|
System.exit(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
loaderThread.start();
|
loaderThread.start();
|
||||||
|
|
Loading…
Reference in a new issue