diff --git a/cmd/root.go b/cmd/root.go index 9418aa09a7f1bcd16c6e8c75d8bcc69b88317f3c..6bc25bd1ec5aa6663a95be26109822284ca9048e 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -446,8 +446,8 @@ var rootCmd = &cobra.Command{ timer = time.NewTimer(dummyPeriod) } } else { - // Wait up to 2 minutes to receive a message - for end, timeout := false, time.After(120*time.Second); !end; { + // Wait up to 45s to receive a message + for end, timeout := false, time.After(45*time.Second); !end; { if text.MessagesReceived > 0 { end = true }