summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--command.c4
1 files changed, 2 insertions, 2 deletions
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);
}