From 8cd14210e153dbfb98c9914914a59fd4071d9d79 Mon Sep 17 00:00:00 2001 From: Eddy Hernandez Date: Sun, 11 Sep 2022 16:01:22 -0700 Subject: [PATCH] Update use of send command to include new required argument See https://github.com/AsamK/signal-cli/commit/4120630309979c1c952691a3b000b79b727a8d39# for more info --- src/client/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/client.go b/src/client/client.go index 844a8e4..c198769 100644 --- a/src/client/client.go +++ b/src/client/client.go @@ -354,7 +354,7 @@ func (s *SignalClient) send(number string, message string, return nil, err } } else { - cmd := []string{"--config", s.signalCliConfig, "-a", number, "send"} + cmd := []string{"--config", s.signalCliConfig, "-a", number, "send", "--message-from-stdin"} if !isGroup { cmd = append(cmd, recipients...) } else {