From aad0e5ae672189ac745a10d65e2d2d3d2b52899d Mon Sep 17 00:00:00 2001 From: Niki Roo Date: Fri, 3 Apr 2020 20:18:46 +0200 Subject: [PATCH] allow --remote on --stop-server --- src/be/nikiroo/fanfix/Main.java | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/be/nikiroo/fanfix/Main.java b/src/be/nikiroo/fanfix/Main.java index 2ed276b..6f77e44 100644 --- a/src/be/nikiroo/fanfix/Main.java +++ b/src/be/nikiroo/fanfix/Main.java @@ -597,10 +597,14 @@ public class Main { } return; case STOP_SERVER: - key = Instance.getConfig().getString(Config.SERVER_KEY); - port = Instance.getConfig().getInteger(Config.SERVER_PORT); + // Can be given via "--remote XX XX XX" + if (key == null) + key = Instance.getConfig().getString(Config.SERVER_KEY); + if (port == null) + port = Instance.getConfig().getInteger(Config.SERVER_PORT); + if (port == null) { - System.err.println("No port configured in the config file"); + System.err.println("No port given nor configured in the config file"); exitCode = 15; break; } -- 2.27.0