From: AsamK Date: Thu, 3 Nov 2022 14:10:02 +0000 (+0100) Subject: Add missing check to httpAddres X-Git-Tag: v0.11.5~5 X-Git-Url: https://git.nmode.ca/signal-cli/commitdiff_plain/e6cf11cb3de2d2a684189de7561fca1c520c60d0 Add missing check to httpAddres --- diff --git a/src/main/java/org/asamk/signal/commands/DaemonCommand.java b/src/main/java/org/asamk/signal/commands/DaemonCommand.java index 0cdf9cc9..d32dc69c 100644 --- a/src/main/java/org/asamk/signal/commands/DaemonCommand.java +++ b/src/main/java/org/asamk/signal/commands/DaemonCommand.java @@ -152,6 +152,7 @@ public class DaemonCommand implements MultiLocalCommand, LocalCommand { !isDbusSystem && socketFile == null && tcpAddress == null + && httpAddress == null && !(inheritedChannel instanceof ServerSocketChannel) )) { runDbusSingleAccount(m, false, receiveMode != ReceiveMode.ON_START); @@ -233,6 +234,7 @@ public class DaemonCommand implements MultiLocalCommand, LocalCommand { !isDbusSystem && socketFile == null && tcpAddress == null + && httpAddress == null && !(inheritedChannel instanceof ServerSocketChannel) )) { runDbusMultiAccount(c, receiveMode != ReceiveMode.ON_START, false);