From e8eaf9285b57eca42c20e56f8f4a7e1432759e95 Mon Sep 17 00:00:00 2001 From: Stefano Date: Wed, 9 Mar 2022 17:39:03 +0100 Subject: [PATCH] Remove wrong constant in splitCommands --- client/commands.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/commands.go b/client/commands.go index 6230e9a..21edcaf 100644 --- a/client/commands.go +++ b/client/commands.go @@ -95,7 +95,7 @@ func splitCommand(cmdPrefix string, args []string) []string { currCmd := cmdPrefix + args[i] i++ - for i < len(args) && len(currCmd) < 50 { + for i < len(args) && len(currCmd) < defaultSplit { currCmd += " " + args[i] i++ }