diff --git a/signal-gateway/src/gateway/mod.rs b/signal-gateway/src/gateway/mod.rs index 45f2ee8..6df8c4a 100644 --- a/signal-gateway/src/gateway/mod.rs +++ b/signal-gateway/src/gateway/mod.rs @@ -139,7 +139,7 @@ fn parse_gateway_command(s: &str) -> Result { // Parse using Conf, treating the input as command line arguments // Prepend a dummy program name since Conf expects argv[0] - let args = std::iter::once("gateway") + let args = std::iter::once("signal-gateway") .chain(s.split_whitespace()) .collect::>();