X-Git-Url: https://git.nmode.ca/signal-cli/blobdiff_plain/221d937eecca5c9b09a3bee7df812203b9927a56..7e223dc228b81edd2f9b42845d42ce26f1d88e13:/src/main/java/org/asamk/signal/commands/DaemonCommand.java diff --git a/src/main/java/org/asamk/signal/commands/DaemonCommand.java b/src/main/java/org/asamk/signal/commands/DaemonCommand.java index 8d26e452..334d9adb 100644 --- a/src/main/java/org/asamk/signal/commands/DaemonCommand.java +++ b/src/main/java/org/asamk/signal/commands/DaemonCommand.java @@ -29,6 +29,7 @@ public class DaemonCommand implements MultiLocalCommand { @Override public void attachToSubparser(final Subparser subparser) { + subparser.help("Run in daemon mode and provide an experimental dbus interface."); subparser.addArgument("--system") .action(Arguments.storeTrue()) .help("Use DBus system bus instead of user bus."); @@ -54,7 +55,7 @@ public class DaemonCommand implements MultiLocalCommand { logger.warn("\"--json\" option has been deprecated, please use the global \"--output=json\" instead."); } - boolean ignoreAttachments = ns.getBoolean("ignore_attachments"); + boolean ignoreAttachments = ns.getBoolean("ignore-attachments"); DBusConnection.DBusBusType busType; if (ns.getBoolean("system")) { @@ -88,7 +89,7 @@ public class DaemonCommand implements MultiLocalCommand { logger.warn("\"--json\" option has been deprecated, please use the global \"--output=json\" instead."); } - boolean ignoreAttachments = ns.getBoolean("ignore_attachments"); + boolean ignoreAttachments = ns.getBoolean("ignore-attachments"); DBusConnection.DBusBusType busType; if (ns.getBoolean("system")) {