From 6574f012c9480662778464bab23413501658a8e0 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Fri, 3 Apr 2020 15:16:49 -0400 Subject: Only treat /open param as count if single digit --- command.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'command.c') diff --git a/command.c b/command.c index 5872bdc..adcc0c8 100644 --- a/command.c +++ b/command.c @@ -337,8 +337,8 @@ static void commandClose(uint id, char *params) { static void commandOpen(uint id, char *params) { if (!params) { urlOpenCount(id, 1); - } else if (isdigit(params[0])) { - urlOpenCount(id, strtoul(params, NULL, 10)); + } else if (isdigit(params[0]) && !params[1]) { + urlOpenCount(id, params[0] - '0'); } else { urlOpenMatch(id, params); } -- cgit 1.4.1